Spring Data - JPA
Spring JPA is part of the umbrella Spring Data project that makes it easy to easily implement JPA based repositories. Spring JPA is part of the umbrella Spring Data project that makes it easy to easily implement JPA based repositories.
http://www.springsource.com/download/community?project=Spring%20Data%20JPA&version=1.0.2.RELEASE
#maven
Implementing a data access layer of an application has been cumbersome for quite a while. Too much boilerplate code has to be written to execute simple queries as well as perform pagination, and auditing. Spring JPA aims to significantly improve the implementation of data access layers by reducing the effort to the amount that's actually needed. As a developer you write your repository interfaces, including custom finder methods, and Spring will provide the implementation automatically. (Note, this approach is not limited to JPA and has been applied to other persistance stores such as MongoDB and Neo4j as part of the Spring MongoDB and Spring Neo4j projects). Features
Latest News
Buzz
Resources
Maven ArtifactsHere is the Spring Milestone Repository: <repository> <id>spring-milestone</id> <name>Spring Maven MILESTONE Repository</name> <url>http://repo.springsource.org/libs-milestone</url> </repository> Here is the dependency: <dependency> <groupId>org.springframework.data</groupId> <artifactId>spring-data-jpa</artifactId> <version>1.0.3.RELEASE</version> </dependency>
|
Quick Jump
DocumentationReference Manual (HTML | PDF)
Other ResourcesSource Code Browsing (Fisheye)
Related Discussions
|








