我有一個聲明式事務管理的Spring + Hibernate應用程序。 我有一個服務(FooService
),它有2種公開方法MethodA
和MethodB
。客戶將call
MethodA
,而這又將撥打MethodB
。聲明式事務管理在Spring中表現不可預知
Client -> MethodA -> MethodB
我想交易只能從方法b起開始。 這是我的Spring應用程序上下文的一個片段:
<bean id="FooService"
class="org.springframework.transaction.interceptor.TransactionProxyFactoryBean">
<property name="transactionManager" ref="transactionManager" />
<property name="target" ref="FooServiceTarget" />
<property name="transactionAttributes">
<props>
<prop key="MethodB">PROPAGATION_REQUIRED,-FooException</prop>
</props>
</property>
</bean>
然而,當我從我的客戶端調用MethodA
,它不會創建事務代理時MethodB
被調用。 如果我將MethodA
也添加到應用程序上下文中的bean配置,調用事務代理(按預期啓動MethodA
)。 這是爲什麼呢?我能否實現僅從MethodB開始創建的交易?
謝謝你的答案(和鏈接)。對不起,我不知道這些問題已經在SO上提出。 –