Add failing test for wildcard generic type resolution (#5285) #5367
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.
Summary
This PR adds a failing test that reproduces issue #5285, where wildcard generic types (e.g.,
MessageWrapper<?>) incorrectly resolve toObjectinstead of respecting the type parameter's bound.Problem Demonstrated
When processing a field declared with a wildcard generic type like
MessageWrapper<?>whereMessageWrapper<T extends Settings>, Jackson's type resolution:java.lang.ObjectSettings)This causes polymorphic type information to be lost during serialization when
@JsonTypeInfoannotations are used.Test Details
The test compares serialization of identical object instances using two different field declarations:
MessageWrapper<?> wildcardWrapper(fails - missing"type"field)MessageWrapper<EmailSettings> specificWrapper(works - includes"type":"EMAIL")Expected vs Actual
Wildcard (Current - Broken):
Specific Type (Works):
The wildcard case should also include the
"type":"EMAIL"field for polymorphic serialization.Related Issue
Fixes #5285
🤖 Generated with Claude Code