已采纳回答 / 丶北骚
xmlns:tx="http://www.springframework.org/schema/tx" http://www.springframework.org/schema/txhttp://www.springframework.org/schema/tx/spring-tx-3.1.xsd
2017-12-17
最新回答 / zl135
<tx:advice id="txAdvice" transaction-manager="transactionManager">这个事物advice的管理者为transactionManager,你从配置文件中应该能够找到一个ID为transactionManager的bean,而这个建议中规定了transfer方法的传输方式为REQUIRED。
2017-11-28
最新回答 / 慕圣168168
spring的xml配置文件中 id = 'accountService' 的service 初始化出问题了,查看一下xml中是不是class 的路径配置错误。。。
2017-10-28
最新回答 / 慕标7289523
掌握最基本的事务管理中的两种方式,@Transactional注解结合applicationContext.xml中的annotation:driven管理事务,AspectJ的xml的配置方式大致就不错了。
2017-09-23