-
Notifications
You must be signed in to change notification settings - Fork 0
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
update to Spring Boot 2 #13
Comments
branch 1.0.3 I updated spring boot to 2.0. I had to change my bean configs that used ref element local attribute to use bean instead I was still specifying version 2.5 of the xsd files, but it looks like it ignored that. Explicit references to hibernate3 package needed to be updated to hiberbuinate5. The SpringBootServletInitializer that Application extends got moved to a new package. I had to explicitly include log4j in maven dependencies. I get a complaint on start up that log4j isn't initialized properly. I had to rebuild the database, maybe relating to new hibernate version? I couldn't edit/save changes to any of the entities before rebuilding database. Signed-off-by: rreganjr <rreganjr@acm.org>
branch 1.0.3 I updated spring boot to 2.0. I had to change my bean configs that used ref element local attribute to use bean instead I was still specifying version 2.5 of the xsd files, but it looks like it ignored that. Explicit references to hibernate3 package needed to be updated to hiberbuinate5. The SpringBootServletInitializer that Application extends got moved to a new package. I had to explicitly include log4j in maven dependencies. I get a complaint on start up that log4j isn't initialized properly. I had to rebuild the database, maybe relating to new hibernate version? I couldn't edit/save changes to any of the entities before rebuilding database. |
#8 #13 #15 branch 1.0.3 I added exception module and moved some exceptions to it, I removed RequelException and just use ApplicationException isntead. most are at the root level com.rreganjr. I added initializer module and moved the SystemInitializer and AbstractSystemInitializer to it. I split this because both nlp and requel use it. I added repository module and moved the repository package to it. I split this because both nlp and requel use it. I added nlp module and moved the nlp package to it. I removed the UserSet/UserSetImpl and replaced with Set<User> and TreeSet<User> Signed-off-by: rreganjr <rreganjr@acm.org>
Why? Why Not?
The text was updated successfully, but these errors were encountered: