How to make @JsonSnakeCase the default for configuration in Dropwizard

后端 未结 3 1636
情书的邮戳
情书的邮戳 2021-02-14 02:26

How will I configure jackson to use snake case in dropwizard instead of putting @JsonSnakeCase in every class ?

3条回答
  •  醉梦人生
    2021-02-14 03:01

    And finally am able to find the answer.. Just add below cofiguration.

    environment.getObjectMapperFactory().setPropertyNamingStrategy(PropertyNamingStrategy.CAMEL_CASE_TO_LOWER_CASE_WITH_UNDERSCORES)
    

提交回复
热议问题