Let’s overview some of the common architecture nowadays and compare them. Which is better? it depends on your needs.
Continue readingDesign Patterns in Modern Java
Let’s review some of the design or programming patterns we can use in our code taking advantage of the Modern Java.
Continue readingDocker – Fixing error storing credentials
Fixing issue on docker for `error storing credentials` after moving from docker desktop to docker installed with homebrew.
Continue readingSpring Framework 6 and Spring Boot 3 Released
A new generation of Spring Framework has been released, after 5 years with Spring Framework 5.x, in November 2022, Spring Framework 6 has been released. […]
Continue readingGIT cheat sheet
A summary of GIT commands organized by categories. Very useful for the day a day work with GIT.
Continue readingJava – Local variable Type Inference
Let’s review some considerations when using the Local variable type inference Java. It basically allows the developer to use the word var instead of the type when declaring local variables (into methods), the compiler is able to infer the type from the right side of the assignment.
Continue readingMicroProfile overview
MicroProfile is an open-source initiative managed by the Eclipse Foundation. MicroProfile optimizes Enterprise Java for micro-services, providing a lot of cloud native features
Continue readingTry Catch Block in Java
In Java, the try/catch block is the alternative to handle exceptions properly and avoid the application to crash. It has useful features like multi check, finally or try-with-resources statements.
Continue readingDocker cheat sheet
Very helpful article with a summary of the most common and useful docker commands. Grouped by categories to find what we need.
Continue readingPKCS 11 Provider across multiple Java versions
A cross version approach to create SunPKCS11 providers to interact with smart cards. Supports version Java 5 to Java 18 at this moment.
Continue reading