-
-
Notifications
You must be signed in to change notification settings - Fork 6.7k
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
[BUG][Java/spring] Incorrect Handling of Nullable Fields in OpenAPI Generator #17538
Comments
@wing328 can you have a look on this issue ? I'm ready to contribute on this issue. |
For me the handling is absolutely correct. I see no reason to create empty optionals to act with null values. That was also a conscious decision for the current implementation and Jackson is doing it correctly so far. If so, you only need this shortcut in your own code and there are other ways. For this reason it should be a setting if at all.
This is because you have set your Jackson Objectmapper incorrectly. You already need the Java 8 module to trade optionals.
Your expected output depends on you Jackson setting. There is a setting what should happen when the field is absent: Here you have all settings: |
|
#14765 (comment) And off course: And the whole discussion is of no use if your Jackson incorrectly serializes an Optional/JsonNullable. You have to set the settings correctly to have a good JSON |
As mentioned in the original description this gives e NPE when using a simple entity with an optional field. The generator creates a fluent api which is easy to use. However due to the use of Optional.of() in the generated methods of that fluent API a NPE is quickly introduced. // Example snippet extracted from a real world example
class Pojo {
private String fieldA;
private Optional<String> fieldB = Optional.empty();
private Optional<LocalDate> fieldC = Optional.empty();
public Pojo fieldA(String fieldA) {
this.fieldA = fieldA;
return this;
}
public Pojo fieldB(String fieldB) {
this.fieldB = Optional.of(fieldB); // If fieldB is null this generates an NPE
return this;
}
public Pojo fieldC(LocalDate fieldC) {
this.fieldC = Optional.of(fieldC); // If fieldC is null this generates an NPE
return this;
}
}
var objectFromSomewhere = .... // Might come from the database or something else
var pojo = new Pojo // Pojo was generated from openapi spec with useOptional = true
.fieldA(objectFromSomewhere.getFieldA())
.fieldB(objectFromSomewhere.getFieldB()) // Possibly null and thus generates a NPE
.fieldC(objectFromSomewhere.getFieldC()) // Possibly null
// A few more fields here, some of them optional, some of them not. This can quickly generate a NPE. This forces the consumer of the fluent API to do all kinds of null checks and defeating the purpose of having such a fluent API. A simple change of allowing null parameters for optional fields by changing the generated code to It would be very nice to have this fixed @MelleD as it now forces us and all teams at my organisation to do all kinds of ugly checks. Note! This has nothing todo with Jackson configuration, but with the fluent API becoming unusable cc: @Kavan72 |
Our team has run across this as well. Moving from |
Does your team use a custom template to generate |
Created a PR #20406 |
Bug Report Checklist
Description
Essentially, I have one endpoint to fetch user data (see below). What I'm attempting to achieve is to make phoneNumber optional, or set it as
nullable: true
. Therefore, I have two options:nullable: true
at the field level.In addition, I have a method that converts a
UserDTO
(database object) to aRestUser
(generated model). Take a look at this method:NullPointerException
. In my opinion, we should useOptional.ofNullable
for non-required fields.nullable: true
on the field, I get a completely different value. If I pass a value to a nullable field, I receive this below result.Actual output
However, this is incorrect why getting
"present": true
; the corrected value should be null if i didn't pass the value.Expected output
openapi-generator version
7.2.0
OpenAPI declaration file content or url
The text was updated successfully, but these errors were encountered: