Illegal reflective access warning for interface-based lookup method injection #24657
Labels
in: core
Issues in core modules (aop, beans, core, context, expression)
status: backported
An issue that has been backported to maintenance branches
type: bug
A general bug
Milestone
Java: 11.0.6
Spring Framework: 5.2.4.RELEASE
In our Spring-based application we use lookup method injection. After switching to the Java 11 the beans which use the lookup method injection produces the illegal reflective access warnings.
I see the issue tracker is full of similar issues. But I believe my case is special. Please let me prove it.
I created a small demo application demonstrating my case: https://github.com/feerbach/spring-enhancer-bug
The important thing is: the illegal reflective access warning occurs in case the bean declared with the lookup method injection references an interface in the
class
attribute.If the demo application is executed with the
--illegal-access=debug
VM option it produces error like:Here it is a snippet from the xml application context file of the demo application:
The
com.example.demo.SomeFactory
is an interface. Under the hood the Spring creates anorg.springframework.cglib.proxy.Enhancer
instance to generate implementation class of thesomeFactory
bean. In the debugger I see theEnhancer
instance passesnull
as thecontextClass
when it invokes theReflectUtils.defineClass
method.The
contextClass
field of the Enhancer instance created for thesomeFactory
bean is not initialized: when the Enhancer instance is being created theEnhancer.setSuperclass
is called with thecom.example.demo.SomeBean
interface as thesuperclass
argument but thecontextClass
field is initialized only if the passed superclass is a concrete class.The question is: was it intended the Enhancer does not specify contextClass in case the superclass is an interface?
The text was updated successfully, but these errors were encountered: