MyBatis 的事务管理方法主要有两种:
SqlSession sqlSession = sqlSessionFactory.openSession();
try {
// 执行 SQL 操作
sqlSession.insert("insertUser", user);
sqlSession.update("updateAccount", account);
// 提交事务
sqlSession.commit();
} catch (Exception e) {
// 回滚事务
sqlSession.rollback();
} finally {
sqlSession.close();
}
<bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
<property name="dataSource" ref="dataSource"/>
</bean>
<tx:advice id="txAdvice" transaction-manager="transactionManager">
<tx:attributes>
<tx:method name="*" propagation="REQUIRED"/>
</tx:attributes>
</tx:advice>
<aop:config>
<aop:advisor advice-ref="txAdvice" pointcut="execution(* com.example.dao.*.*(..))"/>
</aop:config>
在声明式事务管理中,可以通过注解或 XML 配置来指定事务的传播行为、隔离级别、超时时间等属性。这样可以在不修改 Java 代码的情况下,实现事务的管理和控制。