Senrey_Song

Results 4 comments of Senrey_Song

When using a new version of a plugin, it can break IntelliJ IDEA's auto import functionality, which can disrupt code completion and cause the related code generation features, such as...

@markpollack This PR fixes an issue where the extraBody field was being lost during merge operations. The root cause was that extraBody lacks a @JsonProperty annotation, so the generic field...

> This is not the behavior in ser/deser that is expected for 'extra_body'. The field 'extra_body' does not go into the JSON, it get's flattened. You can see this in...

@markpollack By default, this merge operation only processes fields in the target class that are annotated with @JsonProperty; the extra_body field, lacking this annotation, is discarded entirely. ``` java public...