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?