1、导入mybatisplus依赖
com.baomidou mybatis-plus-boot-starter3.3.2
2、mapper接口(dao层)继承baseMapper<实体类>
3、基本CRUD
1.selectById():按照主键查询
2.selectList(null):全查
3.insert(entity):添加。
报错:Could not set property ‘id’ of ‘class com.badao.beans.Employee’ with value
问题原因:javaType和jdbcType的类型不匹配
解决方案:
在实体类添加主键策略以及指定表名
实体类主键id属性添加
@TableId(value = “id”,type = IdType.AUTO)
insert添加主键自动回填
4.selectBatchIds(list):按id列表查询,参数为list集合
5. selectByMap():条件查询
HashMap
hashMap.put(“password”,“123”);//map中存放的是表中的列名,不是类中的属性名
List userList = userMapper.selectByMap(hashMap);
6.updateById(entity):按照id修改
-----------------------------------------------------
7.update(entity,Wrapper):通过条件查询到,把查询到的记录做修改
User user1 = new User(); user1.setPassword("888"); QueryWrapper
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)