概述
简化数据库开发工作,提高工作效率。
准备
<dependency>
<groupId>org.springframework.data</groupId>
<artifactId>spring-data-jpa</artifactId>
<version>1.0.1.RELEASE</version>
</dependency>
基本配置
1.applicationContext.xml
1.配置数据源
db.properties
jdbc.user=
jdbc.password=
jdbc.driveClass=com.mysql.jdbc.dirver
jdbc.jdbcUrl=jdbc:mysql///testJPA
aplicationContext.xml配置
2.配置JPA EntityManagerFactory
3.配置事务管理器
4.配置支持注解的事务
5.配置Spring Data