#jpa
Read more stories on Hashnode
Articles with this tag
In the previous post, we looked at one-to-one relationship. In this post, we will look at one-to-many, many-to-one, and many-to-many...
In the previous posts, we had only a single entity called the student. Let's create another entity named the library card. The library card entity...
In this post, we'll look at how we can persist non-primitive data types in JPA. The primitive data types like int, char, byte, String, boolean, or...
In the previous posts, we set up the Java project and connected it to a database with JPA, and hibernate. Let's look back on the persistence.xml file...
In the previous post, we set up a database and JPA configurations, Let's create a Java class Student, and see how to make it work with JPA. Let us...
Typically JPA is integrated with Spring/Spring Boot and Java EE/Jakarta EE applications. Both these applications provide an abstraction over the JPA...