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
DefaultListableBeanFactory has some nested types that are designed to protect the runtime against class not found errors when certain libraries are not on the classpath (in particular JSR330). Unfortunately, some static analysis tools cannot get past the fact that one of those inner classes implements an interface Provider that is not available at runtime.
Here's a program that fails when javax.inject is not on the classpath:
There's an easy way out: moving Jsr330DependencyProvider to a nested class of Jsr330ProviderFactory, that is, one level deeper. This allows us to keep them as non-static inner classes but nevertheless make the HotSpot/Graal introspection problem go away, as far as I can tell.
Dave Syer opened SPR-17014 and commented
DefaultListableBeanFactory
has some nested types that are designed to protect the runtime against class not found errors when certain libraries are not on the classpath (in particular JSR330). Unfortunately, some static analysis tools cannot get past the fact that one of those inner classes implements an interfaceProvider
that is not available at runtime.Here's a program that fails when javax.inject is not on the classpath:
It seems like a "feature" of the JDK, but I think we can easily work around it by extracting the private nested class into a package private one.
Affects: 5.0.7
Reference URL: oracle/graal#511
Issue Links:
Referenced from: commits b4fc794
The text was updated successfully, but these errors were encountered: