Visit our blog

News & Events

Spring Data JPA 1.0.0.RC1 released

Dear Spring Community,

we are pleased to announce that the first release candidate of the Spring Data JPA project is now available! The release includes:

  • Improved repository interface programming model (transactions at implementation, no need to extend JpaRepository anymore)
  • Improved parameter binding for created queries
  • Performance improvement in inspecting annotations
  • Added documentation for In and NotIn queries
  • Improved detection of domain class from method return types
  • Added MergingPersistenceUnitManager to allow aggregating persistence units from multiple JARs
  • Default clearAutomatically attribute of @Modifying to false
  • Various bugfixes.

We aim to move towards a GA version quite quickly, so if you want to help steeling the final release this is the one to play with.

<dependency>
    <groupId>org.springframework.data</groupId>
    <artifactId>spring-data-jpa</artifactId>
    <version>1.0.0.RC1</version>
</dependency>

<repository>
    <id>org.springframework.maven.milestone</id>
    <name>Spring Maven Milestone Repository</name>
    <url>http://maven.springframework.org/milestone</url>
</repository>

Download | JavaDocs | Reference documentation (HTML) | Reference documentation (PDF) | Changelog

Looking forward to your feedback in the forums or the issuetracker.

 

Newsletter Subscription

Our monthly newsletter is packed full of techniques, tutorials, tips and tricks to get you on your way to Spring nirvana. View Archive

Upcoming Training