Re: [aspectj-users] not able to hook individual class - proxy aspectj

2010-01-12 Thread Ramnivas Laddad
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, > > >

Re: [aspectj-users] not able to hook individual class - proxy aspectj

2010-01-11 Thread priya j
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

Re: [aspectj-users] not able to hook individual class - proxy aspectj

2010-01-10 Thread Ramnivas Laddad
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

[aspectj-users] not able to hook individual class - proxy aspectj

2010-01-10 Thread priya j
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