JPA简介
简单来说就是人家封装好的ORM框架,底层是hibernate。直接使用就支持大部分CURL。
springboot整合
- 依赖
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-jpa</artifactId>
</dependency>
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
- application.properties配置文件增加连接数据库配置和jpa配置
spring.datasource.url=jdbc:mysql://localhost:3306/spring-boot-jpa
spring.datasource.username=root
spring.datasource.password=root
spring.datasource.driver-class-name=com.mysql.jdbc.Driver
#create:每次加载hibernate时都会删除上一次的生成的表,然后根据你的model类再重新来生成新表,哪怕两次没有任何改变也要这样执行,这就是导致数据库表数据丢失的一个重要原因。
#create-drop:每次加载hibernate时根据model类生成表,但是sessionFactory一关闭,表就自动删除。
#update:最常用的属性,第一次加载hibernate时根据model类会自动建立起表的结构(前提是先建立好数据库),以后加载hibernate时根据model类自动更新表结构,即使表结构改变了但表中的行仍然存在不会删除以前的行。要注意的是当部署到服务器后,表结构是不会被马上建立起来的,是要等应用第一次运行起来后才会。
#validate:每次加载hibernate时,验证创建数据库表结构,只会和数据库中的表进行比较,不会创建新表,但是会插入新值。
#spring.jpa.properties.hibernate.hbm2ddl.auto=create-drop (过时了)
#配置jpa
spring.jpa.hibernate.ddl-auto=update
spring.jpa.show-sql=true
spring.jackson.serialization.indent_output=true
#基于对Hibernate和JPA的理解,在ORM中,其为了提升性能使用了Lazy加载,就是在使用的时候,才会加载额外的数据,故导致了在使用之时再加载数据之时, session失效的问题出现。所以问题的目标点实现提前加载数据
spring.jpa.open-in-view=true
第一次使用create,会创建表,然后改为update。
- 声明实体对象
/**
* Description:
* author: LinQin
* date: 2018/07/04
*/
@Entity
public class Account {
@Id
@GeneratedValue
private int id ;
private String name ;
private double money;
...
- 声明dao接口继承jpa
/**
* Description:
* author: LinQin
* date: 2018/07/04
*/
public interface AccountDao extends JpaRepository<Account,Integer> {
}
- 测试
@RunWith(SpringJUnit4ClassRunner.class)
// @WebAppConfiguration //web项目增加这个 SpringApplicationConfiguration过时了,用下面的代替
@SpringBootTest(classes = SpringBootJpaApplication.class)
public class SpringBootJpaApplicationTests {
@Autowired
private AccountDao dao;
@Test
public void contextLoads() {
//懒加载问题,不能使用getOne()
Optional<Account> account = dao.findById(1);
System.out.println(account.get().toString());
}
}
以上就是JPA的简单整合使用。具体实战还有待研究!