All Posts By

Asmir Ljumić

Hibernate Caching Tech Bite
Software DevelopmentTech Bites
June 7, 2022

Hibernate Caching

Introduction to Hibernate Caching When you think about Hibernate, the first thing that comes to mind is Hibernate’s ORM which enables you to use your OOP structured classes as database entities. Furthermore, Hibernate provides a multilevel caching mechanism, which is the actual topic of this blog post.  If this blog…
Builder Pattern in Java
Software DevelopmentTech Bites
May 27, 2021

Builder Pattern in Java

Builder Pattern in Java Design patterns are very important in the world of software development, as they represent well proven and tested solutions for some specific problems and tasks. Builder pattern is one of the most popular and used design patterns in Java. It is used to create instances of…