-
Notifications
You must be signed in to change notification settings - Fork 9
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
Tsystems 211 upgrade spring boot to 3.3.x #709
Merged
Leandro13Silva13
merged 12 commits into
develop
from
TSYSTEMS-211-upgrade-spring-boot-to-3.3.X
Feb 7, 2025
Merged
Changes from 3 commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
b9842d3
fix: upgrade service to 3.2.X
tkuzynow 194ccec
fix: upgrade service to 3.3.X
tkuzynow 7441c9c
fix: upgrade service to 3.3.X
tkuzynow fc77e01
chore: merge
tkuzynow af0890f
chore: fix tenantId null on adviceseeker registration issue
tkuzynow a0f0b1a
chore: fix interceptor definition
tkuzynow b22b428
chore: add disabled test that had AOT issues not related to test itself
tkuzynow b67bc58
Merge branch 'develop' into TSYSTEMS-211-upgrade-spring-boot-to-3.3.X
Leandro13Silva13 05dee1d
chore: removed invalid assertion
tkuzynow d47b534
Merge remote-tracking branch 'origin/TSYSTEMS-211-upgrade-spring-boot…
tkuzynow 404d448
chore: update maven liquibase plugin to fix CVE
tkuzynow ecf86aa
fix: TSYSTEMS-211
Leandro13Silva13 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why Disabled?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Spring Boot 3.3.X introduced some refinements in Ahead-of-Time (AOT) processing, which affects how beans are detected and registered. The error was that AOT processing could not resolve a constructor for MongoClient, which was not even used explicitly in this test.
I investigated and spent quite some time on it, but could not find any working fix for this test in reasonable time.
This was clearly an issue with the test, and not the application.
Moreover this feature is not being used in our codebase (this is related to the old-way appointments were handled for caritas, so I decided to mark it as disabled to proceed with more important tests on the cluster).
To be more specific:
The test itself works (from IDE), but the process-aot maven phase was throwing the exception. This was executed only when you run mvn install.