Spring Boot + Spring Data JPA + 事务无法正常工作
Posted
技术标签:
【中文标题】Spring Boot + Spring Data JPA + 事务无法正常工作【英文标题】:Spring Boot + Spring Data JPA + Transactions not working properly 【发布时间】:2015-04-20 19:20:50 【问题描述】:我使用 1.2.0 版本和 spring-boot-starter-data-jpa 创建了一个 Spring Boot 应用程序,并且我正在使用 mysql。 我已在 application.properties 文件中正确配置了我的 MySQL 属性。
我有一个简单的 JPA 实体、Spring Data JPA 存储库和一个服务,如下所示:
@Entity
class Person
@Id @GeneratedValue(strategy=GenerationType.AUTO)
private Integer id;
private String name;
//setters & getters
@Repository
public interface PersonRepository extends JpaRepository<Person, Integer>
import java.util.List;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;
@Service
@Transactional
class PersonService
@Autowired PersonRepository personRepository;
@Transactional
void save(List<Person> persons)
for (Person person : persons)
if("xxx".equals(person.getName()))
throw new RuntimeException("boooom!!!");
personRepository.save(person);
我有以下 JUnit 测试:
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.SpringApplicationConfiguration;
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
@RunWith(SpringJUnit4ClassRunner.class)
@SpringApplicationConfiguration(classes = Application.class)
public class ApplicationTests
@Autowired
PersonService personService;
@Test
public void test_logging()
List<Person> persons = new ArrayList<Person>();
persons.add(new Person(null,"abcd"));
persons.add(new Person(null,"xyz"));
persons.add(new Person(null,"xxx"));
persons.add(new Person(null,"pqr"));
personService.save(persons);
这里的期望是它不应该在 PERSON 表中插入任何记录,因为它会在插入 3rd person 对象时抛出异常。 但它并没有回滚,前 2 条记录被插入并提交。
然后我想到了快速尝试使用 JPA EntityManager。
@PersistenceContext
private EntityManager em;
em.save(person);
然后我得到 javax.persistence.TransactionRequiredException: No transactional EntityManager available 异常。
在谷歌上搜索了一段时间后,我在同一主题上遇到了这个 JIRA 线程 https://jira.spring.io/browse/SPR-11923。
然后我将 Spring Boot 版本更新为 1.1.2 以获取早于 4.0.6 的 Spring 版本。
然后 em.save(person) 按预期工作并且 Transaction 工作正常(意味着当 RuntimeException 发生时它正在回滚所有数据库插入)。
但即使使用 Spring 4.0.5 + Spring Data JPA 1.6.0 版本,当使用 personRepository.save(person) 而不是 em.persist(person)。
似乎 Spring Data JPA 存储库正在提交事务。
我错过了什么?如何使服务级别的@Transactional 注释起作用?
PS:
Maven pom.xml
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.sivalabs</groupId>
<artifactId>springboot-data-jpa</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>jar</packaging>
<name>springboot-data-jpa</name>
<description>Spring Boot Hello World</description>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>1.2.0.RELEASE</version>
<relativePath />
</parent>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<start-class>com.sivalabs.springboot.Application</start-class>
<java.version>1.7</java.version>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-jpa</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>
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
</dependency>
</dependencies>
</project>
Application.java
@EnableAutoConfiguration
@Configuration
@ComponentScan
public class Application
public static void main(String[] args)
SpringApplication.run(Application.class, args);
【问题讨论】:
发布您的应用程序类和 maven pom。您使用的 Spring Boot 版本应该使用 Spring 4.1.x 而不是旧版本,如果那里有另一个版本,您的列表中可能有一些奇怪的依赖项。 添加 pom.xml 和 Application.java 制作你的PersonService
public
以及你正在调用的方法。
非常感谢 Deinum。让他们公开就成功了。花了几个小时拉我的头发:-(请把它作为答案,我会接受。
顺便说一句,如何处理 javax.persistence.TransactionRequiredException: No transactional EntityManager available Exception?
【参考方案1】:
将事务注释更改为 @Transactional(rollbackFor=Exception.class)
【讨论】:
这是默认的 Spring 行为,无需明确指定。 我遇到了同样的问题。所以我保留了我的异常类,它解决了 如果是检查异常,那么我们需要明确指定。如果是未经检查的异常,如 RuntimeException 或其任何子类,则 spring 将自动回滚事务。 当我使用 Spring 自动配置的EntityManagerFactory
进行开发时,以前不需要将 @Transactional
添加到存储库,但现在我已经改为创建自己的,这个注释是必要的#SpringVoodoo跨度>
【参考方案2】:
来自comment@m-deinum:
使您的 PersonService
public
以及您正在调用的方法。
这似乎已经为几个用户解决了问题。 this answer 中也有同样的内容,引用 manual saying:
当使用代理时,你应该应用@Transactional注解 仅适用于具有公共可见性的方法。如果您确实注释受保护, 带有 @Transactional 注释的私有或包可见方法, 没有引发错误,但带注释的方法没有表现出 配置的事务设置。考虑使用 AspectJ(参见 下面)如果您需要注释非公共方法。
【讨论】:
【参考方案3】:我使用 SpringBoot v1.2.0 和 v1.5.2 对此进行了测试,一切都按预期工作,您也不需要使用实体管理器 @Transactional(rollbackFor=Exception.class)。
我看不到您配置错误的部分,乍一看似乎一切都很好,所以我只是发布我的所有配置作为参考,并带有更多更新的注释和 H2 嵌入式内存数据库:
application.properties
# Embedded memory database
spring.jpa.hibernate.ddl-auto=create
spring.datasource.url=jdbc:h2:~/test;AUTO_SERVER=TRUE
pom.xml
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.demo</groupId>
<artifactId>jpaDemo</artifactId>
<version>1.0-SNAPSHOT</version>
<properties>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
</properties>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>1.5.2.RELEASE</version>
</parent>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-jpa</artifactId>
</dependency>
<dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
</dependency>
</dependencies>
</project>
Person.java
@Entity
public class Person
@Id
@GeneratedValue(strategy= GenerationType.AUTO)
private Integer id;
private String name;
public Person()
public Person(String name) this.name = name;
public Integer getId() return id;
public void setId(Integer id) this.id = id;
public String getName() return name;
public void setName(String name) this.name = name;
PersonRepository.java
@Repository
public interface PersonRepository extends JpaRepository<Person, Integer>
PersonService.java
@Service
public class PersonService
@Autowired
PersonRepository personRepository;
@Transactional
public void saveTransactional(List<Person> persons)
savePersons(persons);
public void saveNonTransactional(List<Person> persons)
savePersons(persons);
private void savePersons(List<Person> persons)
for (Person person : persons)
if("xxx".equals(person.getName()))
throw new RuntimeException("boooom!!!");
personRepository.save(person);
Application.java
@SpringBootApplication
public class Application
public static void main(String[] args)
SpringApplication.run(Application.class, args);
PersonServiceTest.java
@RunWith(SpringRunner.class)
@SpringBootTest
public class PersonServiceTest
@Autowired
PersonService personService;
@Autowired
PersonRepository personRepository;
@Test
public void person_table_size_1()
List<Person> persons = getPersons();
try personService.saveNonTransactional(persons);
catch (RuntimeException e)
List<Person> personsOnDB = personRepository.findAll();
assertEquals(1, personsOnDB.size());
@Test
public void person_table_size_0()
List<Person> persons = getPersons();
try personService.saveTransactional(persons);
catch (RuntimeException e)
List<Person> personsOnDB = personRepository.findAll();
assertEquals(0, personsOnDB.size());
public List<Person> getPersons()
List<Person> persons = new ArrayList()
add(new Person("aaa"));
add(new Person("xxx"));
add(new Person("sss"));
;
return persons;
*每次测试都会清除并重新初始化数据库,以便我们始终根据已知状态进行验证
【讨论】:
以上是关于Spring Boot + Spring Data JPA + 事务无法正常工作的主要内容,如果未能解决你的问题,请参考以下文章
Spring Boot + spring-data-redis
Spring Boot 在使用 solrj 而不是 spring-boot-starter-data-solr 时会爆炸
spring boot系列spring boot 配置spring data jpa (查询方法)