@Autowired
private ObjectMapper mapper;
mapper.configure(MapperFeature.ACCEPT_CASE_INSENSITIVE_PROPERTIES, true);
// deprecated mapper.setPropertyNamingStrategy(PropertyNamingStrategy.CAMEL_CASE_TO_LOWER_CASE_WITH_UNDERSCORES);
mapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE);
jackson的ObjectMapper忽略大小写与驼峰命名
最新推荐文章于 2023-06-19 10:43:09 发布