#java
Read more stories on Hashnode
Articles with this tag
The Composite Pattern is a Structural Pattern that allows us to treat a group of objects the same way as a single instance of the object. The...
Adapter design pattern is a structural design pattern that allows two incompatible interfaces to work together. It acts as a bridge between two...
Singleton is a creational design pattern that lets you ensure that a class has only one instance. Singleton design pattern allows us to create only...
@Transactional annotation is used to mark a method or a class as transactional. Any database operations performed within the marked method or class...
Pagination is often helpful when we have a large dataset and we want to present it to the user in smaller chunks. Also, we often need to sort that...
The Factory Pattern is a powerful design pattern that simplifies object creation, enhances code organization, and promotes maintainability. By...