Hello everyone? I'm trying to configure Spring Boo...
# spring
x
Hello everyone? I'm trying to configure Spring Boot to use the
PropertyNamingStrategy.SnakeCaseStrategy.SNAKE_CASE
setting. Basically I would like my JSON keys as
first_name
,
last_name
, etc...and not as
firstName
,
lastName
, etc. So far I've tried configuring a
Jackson2ObjectMapperBuilder
bean and also an
ObjectMapper
bean ― not both at the same time.