Generic « AOP « Spring Q&A





1. Getting a Template/Generic java.lang.reflect.Method object from org.aspectj.lang.ProceedingJoinPoint    stackoverflow.com

This question would not have existed if AspectJ worked the same way as EJB interceptors work. Consider basic scenario the EJB-interceptor way:

@AroundInvoke
public Object log(final InvocationContext ctx) throws Exception {
    ...

2. Possible bug in Generics AOP?    forum.springsource.org

Possible bug in Generics AOP? I've spent a couple of days trying to figure out why my pointcut definition wasn't working for some code and now I think I know what ...

3. Proxy and generics    forum.springsource.org

Aug 17th, 2007, 02:26 PM #1 aronrodrigues View Profile View Forum Posts Private Message Junior Member Join Date Aug 2007 Posts 3 Proxy and generics I'll try to be direct. I ...

4. Problem with a Pointcut on a method inside a generic typed class    forum.springsource.org

Problem with a Pointcut on a method inside a generic typed class Hi, I would like to use an aspect on the following method securedActionListener in an abstract class called AbstractSecuredBean ...

5. AOP with Java 5 generics    forum.springsource.org

AOP with Java 5 generics Hi Team, I am writing a point cut expression for a method which has generic argument. My advice not at all detected when the method ran. ...