MyBatis-Plus(简称 MP)是一个 MyBatis 的增强工具,在 MyBatis 的基础上只做增强不做改变,为简化开发、提高效率而生。它提供了QueryWrapper自定义查询对象,可以无需手写sql,进行条件查询。在其中的and()和or...
mybatis
MyBatis-Plus更新部分字段
UpdateWrapper修改指定的列 UpdateWrapper<User> updateWrapper = new UpdateWrapper<>(); updateWrapper.eq("id","1").set("name", "tom"); Integer rows = userMapper.update(null, updateWrapper...
mybatis-plus 使用In查询
第一种 在Dao接口中自定义SQL查询,拼接xml字符串 UserDaoMapper.java @Select("<script>" +"select * from user where id in(" + "<foreach item='id' index='index' collect...
Mybatis-Plus使用updateById()、update()将字段更新为null
本文主要介绍了Mybatis-Plus使用updateById()、update()将字段更新为null,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧 一、问...
可以通过三种方式将double转换为int
1、将double转换为int —使用类型转换 2、将double转换为int —使用 Math.round() 3、将double转换为int —使用 Double.IntValue() 1.将double转换为int —使用类型转换 /** * 一个使用typecasting将do...
@Param注解的用法
@Param注解是为SQL语句中参数赋值的。 @Param的作用就是给参数命名,比如在mapper里面某方法 List selectCardInfoByClientNo(String cNo); 当添加注解后: List selectCardInfoByClientNo(@Param("cl...
mybatis 动态sql
if 标签 if 标签通常用于 WHERE 语句、UPDATE 语句、INSERT 语句中,通过判断参数值来决定是否使用某个查询条件、判断是否更新某一个字段、判断是否插入某个字段的值。 <if test="name != null and name !=...
MyBatis注解完成增删改查
使用注解开发会比配置文件开发更加方便 @Select("select * from tb_user where id = #(id)") public User selectByld(int id); 查询:@Select 添加:@Insert 修改:@Update 删除:@Delete 提示:...
Mybatis Plus一对多完整版实战教学!
一、条件 查询班级表 返回所有学生信息 (一对多问题) 二、数据库 班级class_info 学生student 二、代码实现 <!-- 多对一 或者 一对一 --> <!-- <association p...
使用MyBatis Plus自动处理创建时间和最后修改时间
1.创建类 @Component public class TimeMetaObjectHandler implements MetaObjectHandler { public static final String FIELD_CREATE_TIME = "gmtCreate"; public static final String FIELD_UP...