We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
When there is any component schemas of the array type are present in the spec like:
"Pets": { "type": "array", "maxItems": 100, "items": { "$ref": "#/components/schemas/Pet" } },
The generated Pets.java is missing RegisterForReflection import. And I think it is no need to add such annotion on the array type of Class.
Pets.java
RegisterForReflection
The text was updated successfully, but these errors were encountered:
Fix apache#6736 no need to add RegisterForReflection annotation on ar…
8afddb8
…ray type Class
0c2a534
946f125
…ray type Class (apache#6737)
Fix #6736 no need to add RegisterForReflection annotation on array ty…
8fb4f13
…pe Class (#6737) (#6738)
bc5f639
…ray type Class (apache#6737) (apache#6738)
747af66
zhfeng
No branches or pull requests
Bug description
When there is any component schemas of the array type are present in the spec like:
The generated
Pets.java
is missingRegisterForReflection
import.And I think it is no need to add such annotion on the array type of Class.
The text was updated successfully, but these errors were encountered: