-
-
Notifications
You must be signed in to change notification settings - Fork 6.6k
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
[REQ][java rest-assured] support for jackson #3570
Comments
I have prepared the patch on the branch: issue3570-restassured-jackson. The templates are correct (we have patch the templates in the openapi-generator version we are using), but this need some work before doing a PR. As discussed with @jimschubert on Slack, instead of adding a new library We have already this kind of behavior with the |
Also open in this issue, jackson needs to be properly configured in Rest-Assured. For example we are interested in the disabling the |
Part one submitted as PR #3759: this adds the |
Implemented as PR #3795 |
For the moment the java rest-assured is configured to use
gson
.In some scenario using Jackson instead of gson is required. Rest-assured supports both serialization library:
See https://github.com/rest-assured/rest-assured/wiki/Usage#object-mapping
The rest-assured templates can be extend to support either jackson or gson (current default).
The text was updated successfully, but these errors were encountered: