摘要:
Connection connection=null;boolean rollback=false;try{ connection=dataSource.getConnection(); connection.setAutoCommit(false); //使用jdbc访问 connection.commit(); } catch(SQLException e){ e.printStackTrace(); rollback=true;} finally{ if(connection!=null) { if(rollback) { try{ connectio... 阅读全文
摘要:
使用事务管理抽象API进行事务界定的代码示例 阅读全文
摘要:
使用@Transactional进行声明式事务管理的完整配置代码示例 阅读全文
摘要:
spring 事务传播行为 阅读全文