Hi,
I have to use spring data JPA library from Spring framework in a project. Now I am doing a POC for this. So, trying to find the latest maven dependency for spring data jpa.
What dependency code should I add into the pom.xml file of my project to get spring data jpa latest dependency in the project.
Thanks
Hi,
The latest version of spring data jpa is 2.4.2 and you should use the latest version in your project.
You can add following code in your pom.xml file of the project:
<dependency> <groupId>org.springframework.data</groupId> <artifactId>spring-data-jpa</artifactId> <version>2.4.2</version> </dependency>
This library is very useful for Java developers and enables them to develop data access layer based on the JPA specification. It comes with many easy to use API for developing data access layer for the application quickly.
Thanks
Ads