Review Code Like A Human
Reviewing code is challenging and time-consuming.
The fact that everyone has their own style and the lack of standards, add
The Journey To Clean Code
We always want to write code that is more maintainable, more expendable, and more readable. why?
Because these parameters have
@Transactional annotation simplified. At last.
Handling database transactions can be hard and confusing, especially when there are multiple frameworks - each one with its own
Better code review using gifs and flow charts
If you write code for a living you have probably encountered this issue many times. Reviewing code can be extremely
Graceful shutdown of a Spring application
Basically, there are two ways to turn off a computer or a piece of software.
1. Hard shutdown
2. Graceful
Speed up your Spring application with Cache 💾 💪
What will you learn
In this short blog post, you will learn how you use Spring built-in cache mechanism, how
Easily time your methods with Spring AOP
What is AOP?
Aspect-Oriented Programming (AOP) complements Object-Oriented Programming (OOP) by providing another way of thinking about program structure. The