在MyBatisPlus的使用过程中,之前很多时候都是使用queryWrapper(条件构造器)的构造方法传入实体对象,来实现条件的构造,例如
contentCategoryService.list(new QueryWrapper<ContentCategory>(contentCat[......]
在MyBatisPlus的使用过程中,之前很多时候都是使用queryWrapper(条件构造器)的构造方法传入实体对象,来实现条件的构造,例如
contentCategoryService.list(new QueryWrapper<ContentCategory>(contentCat[......]
最近在使用MyBatisPlus的时候遇到一个问题,就是controller中被spring封装bean,在默认使用MP的QueryWrapper构造查询的时候主键是空字符,也就是""
的时候,仍然会被作为查询条件,被拼接到sql中了。
例如
productService.lis[......]