Mybatis-plusselectByMap条件查询方式

2022-11-13 11:11:27 mybatis

selectByMap条件查询

List<T> selectByMap(@Param("cm") Map<String, Object> columnMap);

如上,可以看到BaseMapper中的selectByMap接口需要的参数是Map<String ,Object>,故

Map<String, Object> map=new HashMap<>();
map.put("列名1",约束1);//条件1
map.put("列名2",约束2);//条件2
xxxMapper.selectByMap(map);

相当于sql语句SELECT * FROM 表名 WHERE 列名1= ? AND 列名2= ?

selectMaps方法返回值字段为空不显示问题

1.application.yaml设置mybayisPlus

没加call-setters-on-nulls: true之前

mybatis-plus:
  mapper-locations: classpath*:/mapper
            map.put("test","1");
        }
        return Message.object(mapList);
    }

请求结果: 

2.添加call-setters-on-nulls: true之后

mybatis-plus:
  mapper-locations: classpath*:/mapper/**Mapper.xml
  #实体扫描,多个package用逗号或者分号分隔
  typeAliasesPackage: com.vkl.booking.persistence.entity
  configuration.cache-enabled: false
  global-config.db-config.db-type: Mysql
  configuration.jdbc-type-for-null: null
  configuration:
    call-setters-on-nulls: true

返回结果:

为空的字段也返回出来了,大功告成!

以上为个人经验,希望能给大家一个参考,也希望大家多多支持。

相关文章