Exception after upgrade of Spring Boot from Version 2.5.7 to 2.5.8 #1451
-
We are using blaze persistence 1.6.4 (also tested with 1.6.6):
What me puzzles a bit is that in the stack trace the Does someone has a hint what might the cause of this problem? |
Beta Was this translation helpful? Give feedback.
Replies: 4 comments 6 replies
-
Hi @khmarbaise, it seems like the integration couldn't be setup correctly for some reason. Is there no other stacktrace that points to the actual exception? |
Beta Was this translation helpful? Give feedback.
-
First thanks for your questions. Here is more of the stack trace...
This being running as an integration tests within Maven Failsafe plugin. |
Beta Was this translation helpful? Give feedback.
-
Hi it took some time, so after detailed debugging we have found the problem. We have found out that within String[] parts = VERSION_STRING.split("[\\.-]");
MAJOR = Integer.parseInt(parts[0]);
MINOR = Integer.parseInt(parts[1]);
FIX = Integer.parseInt(parts[2]);
TYPE = parts[3]; assumes that the During the upgrade of Spring Boot 2.5.7 to 2.5.8 the version of Hibernate has been changed from So the simple question in the end is: Is it necessary to have that information about Furthermore I found that within central there existing two versions of Hibernate (for example hibernate-core) There are existing two different versions |
Beta Was this translation helpful? Give feedback.
-
Finally we have upgraded to Spring Boot 2.6.4 and the problem is a kind of solved. Thanks for your help. |
Beta Was this translation helpful? Give feedback.
Finally we have upgraded to Spring Boot 2.6.4 and the problem is a kind of solved. Thanks for your help.