Spring Data JPA v1.0.0.M1发布 Spring框架应用数据访问工具

Spring Data 项目的目的是为了简化构建基于 Spring 框架应用的数据访问计数,包括">非关系数据库、Map-Reduce 框架、云数据服务等等;另外也包含对关系数据库的访问支持。

Spring Data JPA project 刚刚发布了第二个里程碑版本,新的官方公布详情如下:

I'd like to announce the release of the first milestone of Spring Data JPA the successor of Hades. The release is feature equivalent to Hades 2.0.2. However we haven't moved the extensions module and Eclipse plugin yet. The release also includes a cool new feature, as it the query derivation mechanism is now able to traverse nested properties. For details see the according chapter in the Property expressions section of the reference documentation.

To ease the transition a little bit here's a list of necessary steps you have to take.

·GenericDao is now JpaRepository
·base package is now org.springframework.data.jpa
·@NoDaoBean annotation is now @NoRepositoryBean
·we got rid of the separate auditing package, the according types reside in domain now
·the namespace now is http://www.springframework.org/schema/data/jpa
·we have now delegation over inheritance in JpaRepositoryFactoryBean so in case you wrote a custom extension
·Page.asList() is now Page.getContent()

Feel free to post additional steps necessary in case you encounter some in the comments. Could be that I missed one here and there…

下载地址:http://www.springsource.com/download/community?project=Spring%20Data&version=1.0.0.M2

时间: 2025-01-21 03:01:03

Spring Data JPA v1.0.0.M1发布 Spring框架应用数据访问工具的相关文章

使用spring data jpa的问题,依赖包版本

问题描述 我项目用的是spring3.2但是spring data jpa用到spring-aop3.1的包怎么解决版本问题呢?我用的maven构建项目 解决方案 那就使用maven的exclusions标签,取消使用自动依赖的版本.如jersey对于spring的依赖,使用exclusions标签就可以了<dependency><groupId>com.sun.jersey.contribs</groupId><artifactId>jersey-spri

spring data jpa的误将方法名当成属性名称的问题

问题描述 项目中使用了spring data jpa,自己扩展了一个全局接口AbstractJxetRepositorypublic interface AbstractJxetRepository<T> {public void batchInster(List<T> list, int size) throws Exception;public void batchUpdate(List<T> list, int size) throws Exception;}实现

Spring Boot 整合 Spring Data Jpa

配置spring data jpa 及 整合 druid数据库连接池 添加数据库驱动依赖和spring data jpa 依赖 我们使用的是mysql数据库,还需要添加的数据库驱动依赖是mysql-connector-java <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLoc

springboot(五):spring data jpa的使用

在上篇文章springboot(二):web综合开发中简单介绍了一下spring data jpa的基础性使用,这篇文章将更加全面的介绍spring data jpa 常见用法以及注意事项 使用spring data jpa 开发时,发现国内对spring boot jpa全面介绍的文章比较少案例也比较零碎,因此写文章总结一下.本人也正在翻译Spring Data JPA 参考指南,有兴趣的同学欢迎联系我,一起加入翻译中! spring data jpa介绍 首先了解JPA是什么? JPA(Ja

代码-spring data jpa 按条件分页查询问题

问题描述 spring data jpa 按条件分页查询问题 自定义分页查询方法,代码: {"content":[],"totalPages":1,"totalElements":6,"last":true,"number":1,"size":10,"numberOfElements":0,"sort":null,"first"

8.3. Spring Data JPA

8.3.1. @Entity 8.3.1.1. @Id ID 字段 @Id @GeneratedValue(strategy = GenerationType.IDENTITY) @Column(name = "id", unique = true, nullable = false, insertable = true, updatable = false) private int id; 8.3.1.2. @Table 8.3.1.2.1. catalog @Table(name=

spring boot(五):spring data jpa的使用

在上篇文章springboot(二):web综合开发中简单介绍了一下spring data jpa的基础性使用,这篇文章将更加全面的介绍spring data jpa 常见用法以及注意事项 使用spring data jpa 开发时,发现国内对spring boot jpa全面介绍的文章比较少案例也比较零碎,因此写文章总结一下.本人也正在翻译Spring Data JPA 参考指南,有兴趣的同学欢迎联系我,一起加入翻译中! spring data jpa介绍 首先了解JPA是什么? JPA(Ja

5.3. Spring Data JPA

5.3.1. @Entity 5.3.1.1. @Id ID 字段 @Id @GeneratedValue(strategy = GenerationType.IDENTITY) @Column(name = "id", unique = true, nullable = false, insertable = true, updatable = false) private int id; 5.3.1.2. @Table 5.3.1.2.1. catalog @Table(name=

Spring Data JPA方法定义规范【从零开始学Spring Boot】

视频&交流平台] à SpringBoot网易云课堂视频 http://study.163.com/course/introduction.htm?courseId=1004329008 à Spring Boot交流平台 http://412887952-qq-com.iteye.com/blog/2321532           事情的起因:有人问过我们这个这个问题:为什么我利用Spring data jpa写的方法没有按照我想要的情况进行执行呢?我记得当时只是告诉他你你先看看Spring