chore(SpringBoot): Upgrade to 3.4.13 - #356
Open
hirokiterashima wants to merge 5 commits into
Open
hirokiterashima wants to merge 5 commits into
hirokiterashima wants to merge 5 commits into
Conversation
…ntroller utilities
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
Upgrades the application from Spring Boot 3.3.13 to Spring Boot 3.4.13 (and underlying dependencies including Spring Framework 6.2 and Hibernate 6.6), aligns JPA entity ID generation strategies, cleans up deprecated configurations, and adds standard Java 14
@Serialannotations.Summary of Changes
1. Spring Boot 3.4 Upgrade
<parent>version inpom.xmlfrom3.3.13to3.4.13.2. JPA & Hibernate Configuration
@GeneratedValue(strategy = GenerationType.AUTO)toGenerationType.IDENTITYinChat.javaandChatMessage.javato align with the MySQLauto_incrementschema and all other domain entities.spring.jpa.hibernate.use-new-id-generator-mappingssetting fromHibernateConfig.javaand sample property files (Hibernate 6 no longer supports disabling new generator mappings).3. Dependency Cleanup
WordUtils.wrap()inProjectServiceImpl.javawith a native pure-JavawrapText(String, int)helper method, eliminating the need to addorg.apache.commons:commons-textas an explicit dependency.4. Code Modernization
@Serialannotation toserialVersionUIDfields across domain, parameter, and exception classes.5. New tests
Verification
mvn clean test-compilecompiles cleanly with zero errors.mvn test— all 585 tests passed with 0 failures and 0 errors (1 skipped, matching baseline).mvn package -DskipTests;wise.wargenerated and repackaged cleanly via Spring Boot 3.4.13 loader tools.