-
Notifications
You must be signed in to change notification settings - Fork 38.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Unnamed module issue when using FailureAnalyzer with JPMS #28881
Comments
I think this might be a duplicate of #27753, since Spring Boot's |
The stacktrace above suggests that a CGLIB proxy is being created from a class in that package. If that is unavoidable, the module needs to be declared as open: https://stackoverflow.com/questions/46482364/what-is-an-open-module-in-java-9-and-how-do-i-use-it - otherwise its visibility is too restricted for such proxy purposes. @bclozel not sure this is related to |
If you would like us to look at this issue, please provide the requested information. If the information is not provided within the next 7 days this issue will be closed. |
Closing due to lack of requested feedback. If you would like us to look at this issue, please provide the requested information and we will re-open the issue. |
I am trying to make
FailureAnalyzer
working with Java Platform Module System (JPMS) on JDK 11.FailureAnalyzer
is working great when there is notmodule-info.java
, in contrary when this file exists I've got this stacktrace:Here is the content of
module-info.java
:The text was updated successfully, but these errors were encountered: