Add Jackson 3 support for @JsonDeserialize and @JsonPOJOBuilder#918
Merged
Add Jackson 3 support for @JsonDeserialize and @JsonPOJOBuilder#918
@JsonDeserialize and @JsonPOJOBuilder#918Conversation
iparadiso
approved these changes
Feb 2, 2026
paulbakker
reviewed
Feb 2, 2026
...en-core/src/main/kotlin/com/netflix/graphql/dgs/codegen/generators/kotlin/KotlinPoetUtils.kt
Show resolved
Hide resolved
paulbakker
reviewed
Feb 2, 2026
...gs-codegen-gradle/src/main/kotlin/com/netflix/graphql/dgs/codegen/gradle/GenerateJavaTask.kt
Show resolved
Hide resolved
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.
Closes #899
This PR adds support for Jackson 3 (now configured by default in Spring Boot 4 projects) by detecting which versions of Jackson annotations are available on the compile classpath and adding annotations for the available version(s). If neither version is found, codegen defaults to Jackson 2 annotations for backwards compatibility. If both versions are found, codegen adds both annotations and defers to runtime selection behavior.
Affected annotations are:
@JsonDeserializeincom.fasterxml.jackson.databind.annotation(Jackson 2) andtools.jackson.databind.annotation(Jackson 3)@JsonPOJOBuilderincom.fasterxml.jackson.databind.annotation(Jackson 2) andtools.jackson.databind.annotation(Jackson 3)@JsonProperty,@JsonTypeInfo, and@JsonSubTypesare unaffected and remain in thecom.fasterxml.jackson.annotationpackage.Example with both Jackson versions:
Example with single Jackson version: