You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When using the Bean Import functionality the generated bean definitions use reflection for fields which are visible. This is especially the case for package protected fields when the class annotated with @Import is in the same package as the bean and thus the generated bean definition is in the same package.
It looks like the issue is caused by the absence of the isPackagePrivate and isPrivate methods in AbstractBeanDefinitionBuilder.java, see #10236 for a possible fix.
Actual Behaviour
No response
Steps To Reproduce
No response
Environment Information
No response
Example Application
No response
Version
4.2.1
The text was updated successfully, but these errors were encountered:
Expected Behavior
When using the Bean Import functionality the generated bean definitions use reflection for fields which are visible. This is especially the case for package protected fields when the class annotated with @Import is in the same package as the bean and thus the generated bean definition is in the same package.
It looks like the issue is caused by the absence of the
isPackagePrivate
andisPrivate
methods in AbstractBeanDefinitionBuilder.java, see #10236 for a possible fix.Actual Behaviour
No response
Steps To Reproduce
No response
Environment Information
No response
Example Application
No response
Version
4.2.1
The text was updated successfully, but these errors were encountered: