我正在尝试使用@Transactional并且在整个应用程序中只扫描一个组件来扫描所有包和类。
@Transactional(isolation= Isolation.READ_UNCOMMITTED)
<context:component-scan base-package="parent app package"/>
<tx:annotation-driven transaction-manager="jtaTransactionManager" proxy-target-class="true"/>
当spring尝试加载并为bean创建代理以应用Transactional建议时,我看到几个日志如下,
DEBUG CglibAopProxy$ProxyCallbackFilter - - Unable to apply any optimisations to advised method: public
要验证事务是否正常工作,我正在调用隔离级别,如下所示,似乎无效。
TransactionSynchronizationManager.getCurrentTransactionIsolationLevel()
任何人都有此问题或任何解决问题的方法。请帮忙。
感谢您的帮助。