LazyInitTargetSource is a possible solution to the problem as well.
Type: Posts; User: Larry Chu; Keyword(s):
LazyInitTargetSource is a possible solution to the problem as well.
Thanks for the comment. I realize that the depends-on attribute exists, but as I mentioned, often times we don't have the ability to declare dependencies from beans created by a custom namespace...
This post is regarding:
Jira: SPR-3948
(Url not provided because I don't have permission to post a URL)
I think it could be useful to have a way to declare initialization priority without...
Indeed, it may be a recently fixed AspectJ bug:
see https://bugs.eclipse.org/bugs/show_bug.cgi?id=230134
You may want to try out the latest development build of AspectJ to see if this problem...
I suppose that for completeness we need to explicitly disable spring aop proxies for @AspectJ annotations.
<bean...
To be more complete, I think we need to ensure that the AnnotationTransactionAspect's factory method is called before any beans are configured by the container. To implement this, we need to find a...
Belated thanks for raising the JIRA!
I was able to workaround this problem by explicitly configuring the AnnotationTransactionAspect bean.
<bean class="org.springframework.transaction.aspectj.AnnotationTransactionAspect"...