Hibernate is a powerful open-source framework for Java that provides an object-relational mapping solution. It simplifies the process of working with databases which allow developers… Read More
Category Archives: Java
@Version annotation is used to specify the version number for a specific entity. Version Number provided using @Version annotation is used to prevent concurrent modification… Read More
@Transient annotation in Hibernate is used to mark a property or field in an entity class as transient. This means that the field or property… Read More
@OrderBy annotation is used in Hibernate to specify the ordering of the elements in the collection valued property of an entity class. It is used… Read More
Hibernate is a powerful open-source framework for Java that provides an object-relational mapping solution. It simplifies the process of working with databases which allow developers… Read More
There are two categories under which Java technologies or frameworks can be placed: Invasive Technologies / Frameworks Non-Invasive Technologies / Frameworks Invasive Framework Invasive frameworks… Read More
First, let’s start by understanding what Spring Boot is. Spring Boot is a framework that simplifies the process of building and deploying applications by providing… Read More
Generics means parameterized types. The idea is to allow type (Integer, String, … etc., and user-defined types) to be a parameter to methods, classes, and… Read More
If you are aware of a microservices architecture, then there we have several spring boot applications (microservices) running on different ports or routes. An API… Read More
In this article, we will learn how to use the Record Pattern with Switch statements in Java 19 to create more maintainable, readable code. With… Read More
Google Web Toolkit (GWT) is an open-source web application framework developed by Google. It is a Java-based framework that allows developers to write web applications… Read More
Microservices are small, loosely coupled distributed services. Microservices architecture evolved as a solution to the scalability, independently deployable, and innovation challenges with Monolithic Architecture. It… Read More
In Microservices, Service Discovery helps us by providing a database of available service instances so that services can be discovered, registered, and de-registered based on… Read More
Before jumping into RestTemplateBuilder let’s have a quick overview of RestTemplate. RestTemplate is a synchronous REST client which performs HTTP requests using a simple template-style… Read More
Spring Data JPA or JPA stands for Java Persistence API, so before looking into that, we must know about ORM (Object Relation Mapping). So Object… Read More