spring-data-jpa 管理事务

spring Boot 使用事务非常简单,首先使用注解 @EnableTransactionManagement 开启事务支持后,然后在访问数据库的Service方法上添加注解 @Transactional 便可。

关于事务管理器,不管是JPA还是JDBC等都实现自接口 PlatformTransactionManager 如果你添加的是 spring-boot-starter-jdbc 依赖,框架会默认注入 DataSourceTransactionManager 实例。如果你添加的是 spring-boot-starter-data-jpa 依赖,框架会默认注入 JpaTransactionManager 实例。
 

 

一、事务注解详解

默认遇到throw new RuntimeException(“…”);会回滚 
需要捕获的throw new Exception(“…”);不会回滚

 

二、自己写sql或hql语句

  //通过姓名查询学生姓名和成绩
    @Query(value = "select s.*,sc.chinese,sc.match,sc.english from student s\n" +
            "LEFT JOIN score sc on s.id = sc.student_id\n" +
            "where s.name = '小明'", nativeQuery = true)
    public List findBySql();

    //通过姓名查询学生姓名和成绩hql
    @Query(value = "select s.id,s.name,s.age,s.remark,sc.chinese,sc.match,sc.english from StudentEntity_HI s\n" +
            "LEFT JOIN ScoreEntity_HI sc on s.id = sc.studentId\n")
    public JSONArray findByHql();

nativeQuery = true 表示该sql为sql语句

你可能感兴趣的:(spring-data-jpa 管理事务)