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
My server API's use JSON.
I am using Micronaut HTTP Client which needs to send and receive XML to communicate to other services.
After adding this module on startup I am getting the following error:
Message: Error resolving property value [jackson.property-naming-strategy]. Property doesn't exist
Path Taken: new XmlStreamToObjectConverter(XmlMapper xmlMapper,ConversionService conversionService) --> new XmlStreamToObjectConverter([XmlMapper xmlMapper],ConversionService conversionService) --> XmlMapperFactory.serializers --> new OptionalValuesSerializer([JacksonConfiguration jacksonConfiguration]) --> JacksonConfiguration.setPropertyNamingStrategy([PropertyNamingStrategy propertyNamingStrategy])
jackson: property-naming-strategy: SNAKE_CASE
After removing this config it works fine. I dont want to put casing on each and every object.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Issue description
My server API's use JSON.
I am using Micronaut HTTP Client which needs to send and receive XML to communicate to other services.
After adding this module on startup I am getting the following error:
Message: Error resolving property value [jackson.property-naming-strategy]. Property doesn't exist
Path Taken: new XmlStreamToObjectConverter(XmlMapper xmlMapper,ConversionService conversionService) --> new XmlStreamToObjectConverter([XmlMapper xmlMapper],ConversionService conversionService) --> XmlMapperFactory.serializers --> new OptionalValuesSerializer([JacksonConfiguration jacksonConfiguration]) --> JacksonConfiguration.setPropertyNamingStrategy([PropertyNamingStrategy propertyNamingStrategy])
jackson:
property-naming-strategy: SNAKE_CASE
After removing this config it works fine.
I dont want to put casing on each and every object.
The text was updated successfully, but these errors were encountered: