Migrate from Java 11 to Java 17 #71
Open
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.
Migrate from Java 11 to Java 17
Summary
This PR migrates the Spring Boot RealWorld example application from Java 11 to Java 17 (LTS). The changes include:
sourceCompatibilityandtargetCompatibilityto Java 17 inbuild.gradleactions/cachefrom v2 to v4 (v2 was deprecated)All 68 unit tests pass locally and in CI with Java 17. Spring Boot 2.6.3 officially supports Java 17, and all dependencies (MyBatis 2.2.2, Netflix DGS 4.9.21, JJWT 0.11.2, SQLite JDBC 3.36.0.3) are compatible.
Review & Testing Checklist for Human
./gradlew bootRunand test API endpoints)Recommended Test Plan
./gradlew bootRuncurl http://localhost:8080/tagshttp://localhost:8080/graphql./gradlew clean test./gradlew spotlessCheckNotes
javax.*tojakarta.*migration required (only needed for Spring Boot 3.x)Link to Devin run: https://app.devin.ai/sessions/3e26d95ce8bf4a73bb0fef06ecae3889
Requested by: Ibs (@ibrahim-sowunmi)