Implementations
-
Dreamix
Sorting An Array In Java: Tips & Tricks
In Java, sorting data can sometimes be a bummer, especially if you don’t know which algorithm to use. In this blog, we’ll review the most used sorting algorithms in different spheres, compare their complexity and provide practical use examples. Afterwards, we will tackle the question of whether you should choose and implement a specific sorting […]
-
Dreamix
Webhook with Spring Boot and H2 Database
What exactly is a webhook? A webhook is one of the best ways for real-time communication with your application. Unlike typical APIs, a webhook delivers data to the applications which means that you get data immediately when it occurs. This makes it much more efficient for both provider and consumer. In the webhook you can register […]
-
Frontpage
Functionality mocking with Spring AOP
Recently our team needed to measure the performance of a client’s application, which heavily depends on third API providers, such as Spotify, Yelp and TripAdvisor. Our goal was to mock the response from these providers in an easy way, which will later help us to measure the performance of the code base without concerning the […]