Set Up a Barebones Java project with JPA
Typically JPA is integrated with Spring/Spring Boot and Java EE/Jakarta EE applications. Both these applications provide an abstraction over the JPA which hides a lot of stuff that we need to do manually in a barebones Java application. This abstract...
sohailshah.hashnode.dev3 min read
Ralf Schoenian
Thank you for your very helpful introduction. I had to add the following dependency for Netbeans on Ubuntu: <dependency> <groupId>javax.persistence</groupId> <artifactId>javax.persistence-api</artifactId> <version>2.2</version> </dependency>