Hi Priya,
eclipse.org/aspectj itself should be a good starting point.
-Ramnivas
On Mon, Jan 11, 2010 at 2:03 AM, priya j wrote:
>
> Hi Ramnivas,
>
> Thanks for your reply.
> Can you give me some suggestion or site to refer?
>
> Regards,
> Priya
>
>
> Ramnivas Laddad wrote:
> >
> > Priya,
> >
>
Hi Ramnivas,
Thanks for your reply.
Can you give me some suggestion or site to refer?
Regards,
Priya
Ramnivas Laddad wrote:
>
> Priya,
>
> I assume that by "proxy" you mean proxies created by Spring AOP. In that
> case, Controllertest isn't probably a Spring bean. In Spring, only beans
> may
Priya,
I assume that by "proxy" you mean proxies created by Spring AOP. In that
case, Controllertest isn't probably a Spring bean. In Spring, only beans may
be advised by aspects. If you must advise non-beans, you will need to use
the AspectJ weaver.
-Ramnivas
On Sun, Jan 10, 2010 at 6:16 PM, pr
Hi All,
i am using proxy aspectj for my implementation.
When my Pointcut is as follows:
@Pointcut("execution(*
org.springframework.web.servlet.mvc.Controller.handleRequest(..))")
works fine. no problem.
When i want to honk an individual class or method eg:
@Pointcut("execution(* sg.test.Control