You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jan 19, 2022. It is now read-only.
Spring give us the possibility to set the property spring.jackson.property-naming-strategy.
When setting to SNAKE_CASE the expectation is that all fields much have that format.
But want happens is that the property is ignored all fields are on camelCase.
WorkAround:
If I annotate the field with @JsonProperty and explicit write in snake_case the field is correctly formatted.
Spring give us the possibility to set the property spring.jackson.property-naming-strategy.
When setting to SNAKE_CASE the expectation is that all fields much have that format.
But want happens is that the property is ignored all fields are on camelCase.
WorkAround:
If I annotate the field with @JsonProperty and explicit write in snake_case the field is correctly formatted.
Application Property
cloud.aws.region.auto=false spring.jackson.property-naming-strategy=SNAKE_CASE cloud.aws.region.static=eu-west-1 cloud.aws.stack.auto=false
Configuration Class of AWS Components
` @TestConfiguration
}
`
Version
spring-cloud-starter-aws-messaging :2.2.4.RELEASE
Is this behaviour supposed to happen ?
The text was updated successfully, but these errors were encountered: