-
Notifications
You must be signed in to change notification settings - Fork 41.1k
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
ArrayStoreException when using spring-boot-1.2.0.M2 on Wildfly 8.1.0 #1696
Comments
This is the JDK's cryptic way of telling you that it's encountered an annotation that's referencing a class that isn't on the class path. Unfortunately, it doesn't tell you which annotation it was processing, where that annotated was sited, or the class that's missing. Can you post your application's dependencies, please? They should be enough for us to figure it out. The output from |
|
This is similar to #1065. The problem this time is However, TL;DR: Using |
@wilkinsona I think there is a similar case with EndpointWebMvcChildContextConfiguration
When Spring Security is not in classpath. Should I open an issue on this? |
@lazee Yes, please. |
Thanks |
I am getting this : |
@rupams2002 This issue has been closed for a while. If you think you've found a bug please open a new issue with as much information as possible and a project that reproduces it. |
If you are seeing this error (ArrayStoreException: sun.reflect.annotation.TypeNotPresentExceptionProxy) when running tests with surefire, a workaround is discussed at #6254 |
I also meet this question, becasue someone of the maven dependency(nested) is conflict with your spring-boot, so you can find the which depency is connect with spring ,so you can exclude it and try run again. |
@wilkinsona I have this issue using Boot 2.0 and Spring Security in a project. I understand this issue is closed, but I'm interested in knowing how did you pinpoint the |
Debug the app with an entry breakpoint on |
@wilkinsona - thanks for this tip, you have unblocked my project! |
i upgraded today from 1.2.0.M1 to 1.2.0.M2 in my development version and tried to deploy my app on wildfly 8.1.0. during app start i got this exception:
1.2.0.M1 works fine here
The text was updated successfully, but these errors were encountered: