Project setup: Spring 3.0.5 / JPA 2 / Hibernate / @Transactional
We work with several different Data Sources (and hence different transaction managers), but have common Service base classes, as a lot of the functionality is reused.
So we thought we'd solve this by using Custom Annotations. We define all methods in an abstract base class, and create one empty implementation class per Transaction Manager.
Now the problem is:
In AbstractFallbackTransactionAttributeSource
, this is the lookup that is being done:
TransactionAttribute txAtt = findTransactionAttribute(specificMethod);
// ...
// Second try is the transaction attribute on the target class.
txAtt = findTransactionAttribute(specificMethod.getDeclaringClass());
First the method is checked, then the class that declares the method (and its ancestors). But in our context, the custom annotation resides in a subclass that can't be found by going upwards.
So how can we solve this problem?
[I also asked this question in the Spring Community Forum]
For the time being, we solved this issue by providing
AnnotationTransactionAttributeSource
which does a lookup on the target
class first and then delegates to
the super classBeanFactoryPostProcessor
that substitues our implementation for the original AnnotationTransactionAttributeSource
bean definition that is created internally by <tx:annotation-driven>
.