指定了事 
务 
的管理规则 

private PlatformTransactionManager txManager;//定义了提交和回滚操作
-----忽略了(get,set)
// 自定义事务
TransactionStatus txStatus = txManager.getTransaction(txDefinition);//表示一个新的或者运行着的事务。可查询事务状态----回滚提交
if(txManager != null && !txStatus.isCompleted()){
// 提交事务
txManager.commit(txStatus);
}----回滚
if(txManager != null && !txStatus.isCompleted()){
//回滚事务
txManager.rollback(txStatus);
}