springboot+mybatis在返回map数据时,为空不返回字段的解决办法

直接在yml配置文件中添加:

springboot+mybatis在返回map数据时,为空不返回字段的解决办法_第1张图片


mybatis:
  typeAliasesPackage: com.jzb.**.**.entity
  mapperLocations: classpath:/mapping/*.xml
  configuration:
    map-underscore-to-camel-case: true #自动开启驼峰规则映射
    call-setters-on-nulls: true

 

你可能感兴趣的:(mybatis,springboot)