As discussed elsewhere the Spring AOP approach has some serious limitations. I want to list up the core issues here:
1. Aspects are not executed when methods are called via a this reference.
2....
Type: Posts; User: iterator; Keyword(s):
As discussed elsewhere the Spring AOP approach has some serious limitations. I want to list up the core issues here:
1. Aspects are not executed when methods are called via a this reference.
2....
The following construct brings up a BeanCurrentlyInCreationException.
<bean name="A" class="foo.bar.X" scope="session">
<property name="refToB" ref="B"/>
</bean>
<bean name="B"...
Doesn't anyone consider this relevant? I would appreciate to have some recognization to the issue.
I also have the same problem. I have valid circular dependencies that are expressed only by explicit properties (no autowiring and no deps via constructor-args). As long as I use the scope singleton...
Imagine the following situation: I have two beans bean1 and bean2. bean1 will be instantated because it is retrieved directly or indirectly via explicit dependencies by BeanFactory.getBean(). bean2...
Thank you for confirming the demand.
I've opened the ticket IDE-750 for that issue.
salute
Dirk
Since the release canditate should improve content assist functionality I thought this thread is the right place to put this issue.
The content assist does not support inner classes. The following...
Hi Christian,
that sounds good. I am looking forward to read about the validation API. Thank you.
Dirk
Christian,
thank you for your fast response.
I tried this, but got lost in unknown terrain. I am new to the whole eclipse plugin stuff and also new to the Spring IDE extension points. I...
I agree with you but there remains a question: What if there is used more than one Annotation class. Would the validator find all the RequiredAnnotationBeanPostProcessor instances and not just one?
...
The RequiredAnnotationBeanPostProcessor supports custom annotations for the validation via setRequiredAnnotationType(). Spring IDE supports "@Required property" validation rule but has no option for...
Done.
SPR-3913
All beans I configure for one factory use the same namespace for their names/ids. This is a serious limitation. Like in any other complex environment the things grow and at one point one looses the...
Unfortunatley there's no progress to meet the demands of this thread thread
Thus, I decided to solve it on my own by deriving from DefaultListableBeanFactory and using a own NamespaceHandler. This...