-
Bug
-
Resolution: Done
-
Major
-
3.0.4.Final
-
None
-
Workaround Exists
-
Reproducer is on my branch.
In short you need an abstract package private superclass with public method with an interceptor bound to it.
Then you write an implementation and expect it to work, but it won't.
This is because JVM creates a bridge method on the subclass (this is JVM hack to allow for reflective invocation from subclass to non-public superclass method - see this SO question and this Oracle bug report).
When creating proxy subclass, Weld will skip such method because method.isBridge() returns true.