Yes, you're right.
Thank's a lot, it's work fine now :)
Type: Posts; User: och; Keyword(s):
Yes, you're right.
Thank's a lot, it's work fine now :)
Thanks for your answer.
But yes I try again with @target, but it's not works.
In my sample, @target and @within do the same thing, and Aspect is run only if the @Cacheable is define on the...
Hi,
I try to run an aspect when the method of class implementation is call if the interface of this class have an annotation...
With an example it's easier:
I have the interface with on...
I just do a test with spring 2.5.6 and the code it works fine.
Here the maven dependency configuration:
<dependency>
<groupId>org.springframework</groupId>...
Hi,
I have some problems trying to bind an annotation to the parameter of an Advice.
- I have the following Annotation:
@Target( { ElementType.METHOD, ElementType.TYPE })...
You're right, sorry, I didn't see it before...
Thank's.
Hi,
I try to deploy a webapp on WebSphere7 with JPA2.0 and I have this error :
Caused by: java.lang.NoSuchMethodError:...
I find a solution with a child and a parent Spring context. I suppose the child is created after the parent, so the beans are all postprocessed.
But I'm going to see how BeanDefinitionParser...
So if I undestand, a BeanFactoryPostProcessors can create a beanDefinition in the context Spring only if this beanDefinition not reference an other bean (defined in XML spring config file).
For...
Hi,
I try to implement a BeanFactoryPostProcessor that generate BeanDefinition beans in the Spring Context, and to do that I need to get spring beans wiche are already reference by annotation like...