Complex Queries for Java data
Recently a project I was working on called for a complex filter that was needed for selecting specific elements from a large data set. Looking at various methods of doing…
Team to Create Outside the Box
Recently a project I was working on called for a complex filter that was needed for selecting specific elements from a large data set. Looking at various methods of doing…
Discussion on which is the better choice of type to return from a method or function for multiple items. Both have their values, but flexibility gives you the most options.…
As a software architect, designing robust, scalable, and adaptable distributed systems is a constant pursuit. When working with Apache Kafka, a common challenge arises: how do you send messages that,…
Ever have a list, that you need to paginate through? I certainly have, I created a simple method to ListUtils to make it easier. Several things had to be taken…
Recently had a need to break things out over a given date range into month-long increments. I found a solution that did this, however, I was not happy with it…
Ever feel bogged down by writing tons of code just to interact with your database? If you’re a Java developer working with relational databases, Spring Data JPA is your new…
Spring Data REST is a Spring module that automatically creates RESTful APIs for Spring Data repositories. It eliminates boilerplate code, allowing you to focus on your application’s core logic. Benefits:…