elab

Results 16 comments of elab

@sbrannen Obviously, not enough... I will certainly give it another try, when I'll have more spare time (perhaps, second half of January).

The PR with patch and additional unit test for the initial use case is created. I also added the "declaring class of the specific method" again to "priorities" (as it...

I finally managed to solve the problem without patching the spring-tx library (now, no need to create a patch for every new version of Spring): _The default "transactionAttributeSource" bean (defined...

> Did you think about rewriting primary transaction attributes by any override (In your code it is secondaryObj). Could you give an example?

OK, I understand your thought. What about ``` @Component class ReadOnlyRepository { @Transactional(readOnly = true) void read() } @Component @Transactional class MasterRepository extends ReadOnlyRepository { } ``` (I removed `readOnly...

@kurenchuksergey Sorry for the delay. The "override" behavior you wrote about is essentially how the standard Spring library works: The `@Transactional` annotation with the highest priority "overrides" all other occurrences...