Improve Code Quality with SpotBugs
Every developer should ensure code quality and follow language conventions, otherwise Technical Debt is created, and at some point in the future you will have to revisit that sm...
Integer Caching in Java
Java provides some optimizations for integers, so instances of Integer are cached by the JVM to increase performance. How it works Basically, when an Integer is initialized a ...
Troubleshooting Tools for Microservices Architecture
One of the biggest challenges when transitioning to a microservices architecture is troubleshooting and debugging. When the number of microservices grows, a simple HTTP request ...
Reduce Startup Time with Spring Boot 2.2
Spring Boot 2.2 will be released soon (currently 2.2.0 M1) and it’s going to bring some improvement and new features like lazy initialization of beans. Until now spring-boot-de...