<?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:tx="http://www.springframework.org/schema/tx" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.0.xsd http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx.xsd">
<!-- 事務管理器 --> <bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager"> <!-- 數據源 源自於mybatis,也就是看dao.xml--> <property name="dataSource" ref="dataSource"></property> </bean> <!-- 註解方式配置事務 --> <tx:annotation-driven transaction-manager="transactionManager"/>
1.設置某個方法使用事務html
在調用的方法上加上@Transactional註解(必須爲public方法才行,不要捕捉異常,要讓異常自動拋出,不然不能進行事務回滾。方法要寫在服務層中在controller中無效)。spring
public class RoleServiceImpl implements RoleService { @Autowired RoleDao daoImpl; @Transactional // 設置某個方法使用事務 public int add(Role role) { } }
2.設置某個類的全部方法都使用事務數據庫
@Service @Transactional // 類中全部方法都使用事務 public class RoleServiceImpl implements RoleService { @Autowired RoleDao daoImpl; @Override public int add(Role role) { return daoImpl.add(role); } @Override @Transactional(propagation = Propagation.NOT_SUPPORTED) // 不使用事務 public List<Role> queryList() { return daoImpl.queryList(); } }
配置完成後能夠在IDEA中看到,在spring配置文件左側出現了一個m標識,點擊能夠跳轉至配置事務的方法位置。mybatis
若是沒有使用事務,先添加角色,再人爲製造一個異常。程序報異常後,數據庫中任然插入了數據。框架
使用食物後,出現異常後,數據庫就會回滾,不會插入數據。ide
@Override @Transactional public int add(Role role) { int affectRows = daoImpl.add(role); // 添加角色 int arr[] = {}; arr[10] = 0; return affectRows; }
如今有一個需求,個人MySQL數據庫主鍵(int類型)是自動增加,每次插入失敗主鍵增加了但沒有插入成功,下一次加入成功後會形成數據的主鍵不連續。目前上述事務處理方式並不能解決這個需求。測試
參考:spa