SpringBoot驼峰命名转下划线连接命名配置
2019-07-26 本文已影响0人
Codifier
spring:
jackson:
property-naming-strategy: CAMEL_CASE_TO_LOWER_CASE_WITH_UNDERSCORES
如果某个类的某个字段不想进行命名转换,则在该字段上面添加注解:
@JsonProperty("studentId")
spring:
jackson:
property-naming-strategy: CAMEL_CASE_TO_LOWER_CASE_WITH_UNDERSCORES
如果某个类的某个字段不想进行命名转换,则在该字段上面添加注解:
@JsonProperty("studentId")