最近升级到2.0.0的springboot以后发现事务有问题,不会回滚。如果引入javax的javax.transactio.Transaction的话会报错,说事务没打开:
javax.persistence.TransactionRequiredException: Executing an update/delete query
而如果导入:import org.springframework.transaction.annotation.Transactional; 直接报错归报错,执行归执行,也就是没有保证操作的一致性跟原子性。
最后在求助无助的情况下,自己发现,由于springboot版本的升级,mysql方言的问题导致默认建表引擎不是支持事务类型的innodb而是其他造成的。
再此记录,以便其他学习者参考:
yml配置:
spring:
jpa:
show-sql: true
database: MYSQL
hibernate:
ddl-auto: update
naming:
physical-strategy: org.springframework.boot.orm.jpa.hibernate.SpringPhysicalNamingStrategy
properties:
hibernate:
dialect: org.hibernate.dialect.MySQL5InnoDBDialect
current_session_context_class: org.springframework.orm.hibernate5.SpringSessionContext
package com.hdc.hdc.warehouseManage.service;
import java.util.List;
import org.springframework.data.domain.Page;
import org.springframework.transaction.annotation.Transactional;
import com.hdc.hdc.warehouseManage.entity.GoodsLocation;
import com.hdc.hdc.warehouseManage.entity.GoodsTrade;
import com.hdc.hdc.warehouseManage.entity.vo.WareHouseVO;
public interface GoodsLocationServiceI {
List<GoodsLocation> findGoodLocation();
Page<GoodsTrade> findGoodsTradeByLocation(Integer pageNum, Integer pageSize, String locationId);
@Transactional(rollbackFor=Exception.class)
public void updateGoodsAndLocations(WareHouseVO vo);
}
经测试,事务正常了。
binggo
感谢观看,烦请关注个人工作室:深圳市骏凯网络服务有限公司,请指点一二,谢谢