map-underscore-to-camel-case: true
这个yml设置只会把VO之类的自动驼峰化
但是有些没有VO的 只是一两个字段的 直接返回map给前端的
就在配置文件
下加入
@Bean
public ConfigurationCustomizer mybatisConfigurationCustomizer(){
return configuration -> configuration.setObjectWrapperFactory(new MybatisMapWrapperFactory());
}
重启 返回的map数据也转为驼峰了。
网友评论