springboot事务异常回滚了,error不回滚,为什么?
springboot+jpa+mysql,@EnableTransactionManagement和@Transactional(rollbackFor=Exceptio...
springboot+jpa+mysql,@EnableTransactionManagement和@Transactional(rollbackFor = Exception.class)都配了,throw new Exception可以回滚,我模拟了一个数据库字段超长的错误,却不能回滚了,为什么?是还有什么配置没有配吗?
for (int i = 0; i < 20; i++) {
User user = new User();
user.setUserName("李李李李李" + i);
user.setUserPassWord("password" + i);
userDao.save(user);
}
已经找到答案了。数据库表类型选错了选InnoDB就行了 展开
for (int i = 0; i < 20; i++) {
User user = new User();
user.setUserName("李李李李李" + i);
user.setUserPassWord("password" + i);
userDao.save(user);
}
已经找到答案了。数据库表类型选错了选InnoDB就行了 展开
1个回答
2018-05-19 · 知道合伙人互联网行家
关注
展开全部
新建Spring Boot项目,依赖选择JPA(spring-boot-starter-data-jpa)和Web(spring-bootstarter-web)。
配置基本属性 在application.properties里配置数据源和jpa的相关属性
spring.datasource.driverClassName=com.mysql.jdbc.Driver
spring.datasource.url=jdbc:mysql://localhost:3306/springboot
spring.datasource.username=root
spring.datasource.password=123456
spring.jpa.hibernate.ddl-auto=update
spring.jpa.show-sql=true
spring.jackson.serialization.indent_output=true
定义映射实体类
定义Controller类
@RestControllerpublic class PersonCtroller {
@Autowired PersonServer personServer;
@RequestMapping("/rollback")
public Person rollback(Person person){
return personServer.savePersonWithRollBack(person);
}
@RequestMapping("/norollback")
public Person noRollback(Person person){
return personServer.savePersonWithOutRollBack(person);
}
}
定义数据访问层
public interface PersonRepository extends JpaRepository<Person, Long> {}
定义Server层
@Servicepublic class PersonServerImp implements PersonServer {
@Autowired
PersonRepository personRepository;
配置基本属性 在application.properties里配置数据源和jpa的相关属性
spring.datasource.driverClassName=com.mysql.jdbc.Driver
spring.datasource.url=jdbc:mysql://localhost:3306/springboot
spring.datasource.username=root
spring.datasource.password=123456
spring.jpa.hibernate.ddl-auto=update
spring.jpa.show-sql=true
spring.jackson.serialization.indent_output=true
定义映射实体类
定义Controller类
@RestControllerpublic class PersonCtroller {
@Autowired PersonServer personServer;
@RequestMapping("/rollback")
public Person rollback(Person person){
return personServer.savePersonWithRollBack(person);
}
@RequestMapping("/norollback")
public Person noRollback(Person person){
return personServer.savePersonWithOutRollBack(person);
}
}
定义数据访问层
public interface PersonRepository extends JpaRepository<Person, Long> {}
定义Server层
@Servicepublic class PersonServerImp implements PersonServer {
@Autowired
PersonRepository personRepository;
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询
广告 您可能关注的内容 |