这是我正在使用的示例配置。
当我从外部类调用 doSomething() 方法时,事务性是所希望的。
但是,当我从“目标”bean 中调用相同的方法时,事务似乎永远不会启动,因此在失败的情况下不会发生回滚。
这是预期的行为还是我错过了什么?
<bean id="my.bean" class="org.springframework.transaction.interceptor.TransactionProxyFactoryBean">
<property name="transactionManager" ref="txManager"/>
<property name="target" ref="my.bean.impl"/>
<property name="transactionAttributes">
<props>
<prop key="doSomething">PROPAGATION_REQUIRED, -Exception</prop>
</props>
</property>
</bean>