[Java-Spring] Enable bean validation for spring-http-interface when configured#23609
Open
thiswasdumb wants to merge 2 commits intoOpenAPITools:masterfrom
Open
[Java-Spring] Enable bean validation for spring-http-interface when configured#23609thiswasdumb wants to merge 2 commits intoOpenAPITools:masterfrom
spring-http-interface when configured#23609thiswasdumb wants to merge 2 commits intoOpenAPITools:masterfrom
Conversation
…ted for objects containing required fields
useBeanValidation Is Set to True When Expectedspring-http-interface when configured
Contributor
Author
|
I'd feel bad pinging because it is such a small change... I just saw the issue and wanted to give a go at addressing it honestly. |
Member
|
thanks for the PR please follow step 3 to update the samples to address https://github.com/OpenAPITools/openapi-generator/actions/runs/24862461150/job/72791337954?pr=23609 |
Contributor
Author
Yep sorry I had like 176 files edited when I compiled so I thought I was definitely not doing it right. Was gonna take a look at the errors in the pipeline to know wha to upload, will do this when I get home. Thank you so much for the link!! |
Contributor
Author
|
Added the samples now 👍 |
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
The current logic for spring-http-interface always sets
useBeanValidationandperformBeanValidationto false, which serves problematic when fields are expected to not be nullable. This ensures that if they are set to true, the generated classes contain the@NotNullgeneration alongside those variables.This MR will fix #23585
Changes
modules/openapi-generator/src/main/java/org/openapitools/codegen/languages/SpringCodegen.javaI removed the logic which always sets them to false and follows through with setting them based on their expected value.modules/openapi-generator/src/test/java/org/openapitools/codegen/java/spring/SpringCodegenTest.javatests to ensure the file is generated as expectedPR checklist
Commit all changed files.
This is important, as CI jobs will verify all generator outputs of your HEAD commit as it would merge with master.
These must match the expectations made by your contribution.
You may regenerate an individual generator by passing the relevant config(s) as an argument to the script, for example
./bin/generate-samples.sh bin/configs/java*.IMPORTANT: Do NOT purge/delete any folders/files (e.g. tests) when regenerating the samples as manually written tests may be removed.
master(upcoming7.x.0minor release - breaking changes with fallbacks),8.0.x(breaking changes without fallbacks)"fixes #123"present in the PR description)Summary by cubic
Honor
useBeanValidationandperformBeanValidationfor the Spring HTTP Interface generator so required fields get@NotNullwhen validation is enabled. Fixes #23585. Updated samples to reflect validation annotations.useBeanValidationandperformBeanValidationinSpringCodegenforspring-http-interface; stop forcing them to false and adjust the warning text.@NotNullis generated when both flags are true, and regenerate samples to include validation annotations (e.g.,@Validon collection elements and request body lists).Written for commit c9ede04. Summary will update on new commits.