Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Duplicate
-
1.6.1
-
None
-
None
-
ALL
Description
Consider the following implementation
public interface MySuperInterface() {
public getName()[
}
public interface MyInterface extends MySuperInterface() {
}
class MyClass implements MyInterface {
.....
}
If I provide an instance of MyClass in the context, then engine is unable to resolve reference following reference
$myClasref.name
The bug is in the following method -> org.apache.velocity.util.introspection.ClassMap.createMethodCache().
This method does not introspect the super interface.