0

Using @org.springframework.transaction.annotation.Transactional with

<bean class="org.springframework.orm.jpa.JpaTransactionManager" id="txMgr">
    <property name="entityManagerFactory" ref="emFactory"/>
</bean>

and

<tx:annotation-driven mode="aspectj" transaction-manager="txMgr"/>

What exception would be thrown upon entering the @Transactional method, if any?

4

1 回答 1

0

它将成为 RuntimeException 的子类。

这必须在比您的服务更高的级别上进行管理。如果数据库是 KO,回滚是无关紧要的^^。

于 2012-12-05T14:15:21.157 回答