[jboss-jira] [JBoss JIRA] Created: (JBAOP-339) Inteception on field inherited through generic superclass
dunks80 (JIRA)
jira-events at jboss.com
Tue Jan 9 12:15:26 EST 2007
Inteception on field inherited through generic superclass
---------------------------------------------------------
Key: JBAOP-339
URL: http://jira.jboss.com/jira/browse/JBAOP-339
Project: JBoss AOP
Issue Type: Bug
Security Level: Public (Everyone can see)
Environment: JBoss 4.0.5.GA
JBoss AOP 1.5.2.GA load time weaving
Java HotSpot(TM) 64-Bit Server VM (build 1.6.0-b105, mixed mode)
Reporter: dunks80
I'm seeing the following unexpected behavior
Code:
public abstract class A
{
@MyFieldAnnotation
protected Object myField;
...
}
public abstract class B<Z> extends A
{
...
}
public class C extends B<Y>
{
...
}
@InterceptorDef(scope = Scope.PER_VM)
@Bind(pointcut = "get(* *->@MyFieldAnnotation)")
public class MyFieldInterceptor implements Interceptor
{
...
}
When i try to call myField on an instance of C from within a method in C my interceptor is not run. However if I duplicate the annotated field in class B like this...
Code:
public abstract class A
{
@MyFieldAnnotation
protected Object myField;
...
}
public abstract class B<Z> extends A
{
@MyFieldAnnotation
protected Object myField;
...
}
...then the interceptor works when calling myField from an instance of C. I'm guess that since B is generic some sort of erasure of the annotation is happening. As a work around in the meantime I've just duplicated the annotated field. I just wanted to know whether this issue was known to the developers (if not I'll post it to jira) and whether or not there was some way to get this working without the need to duplicate that field.
Thanks
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.jboss.com/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
More information about the jboss-jira
mailing list