spring-retry
spring-retry copied to clipboard
Support AspectJ Load-Time Weaving
A number of Spring projects support AdviceMode.ASPECTJ (e.g. @EnableCaching, @EnableTransactionManagement) to enable support for AspectJ load-time-weaving. Would it make since for spring-retry to also support this feature.
I am looking for AdviceMode.ASPECTJ
for @Retryable
as well.
With compile time weaving I can have a Tranasctional annotation that is honoured on internal method calls (and thus private methods).
This is what adding support for aspectj mode adds. Currently I can only retry methods that are called from an external location.