mybatis通过if语句实现增删改查操作

 更新时间:2020年11月27日 11:55:06   作者:有个机车梦  
这篇文章主要介绍了mybatis通过if语句实现增删改查操作,具有很好的参考价值,希望对大家有所帮助。一起跟随小编过来看看吧

有时候为了简化我们的代码。

1 举个例子

Student类:

@Data
public class Student {
 private Integer id;
 private Integer age;
 private Integer sno;
}

有时候我们想通过age这个属性获取Student对象

有时候我们也想通过sno这个属性获取Student对象

难道我们在DAO层写两个接口?

比如这样子?

Student getStudentByAge(Int age);

Student getStudentBySno(Int sno);

那么在mapper文件中要这样写?

 <select id="getStudentByAge" parameterType="int" resultMap="studentMap">
 select * from student where age=#{age}
 </select>
 <select id="getStudentBySno" parameterType="int" resultMap="studentMap">
 select * from student where sno=#{sno}
 </select>

显然,这样子是不高效的

2 上手测试 实验

实体类 Student:

@Data
public class Student {
 @ApiModelProperty(name = "id",example = "1",position = 1)
 private Integer id;
 @ApiModelProperty(name = "age",value = "年龄",example = "18",position = 2)
 private Integer age;
 @ApiModelProperty(name = "sno",value = "学号",example = "334",position = 3)
 private Integer sno;
}

数据库:

CREATE TABLE `student` (
 `id` int(11) NOT NULL AUTO_INCREMENT,
 `age` int(11) DEFAULT NULL COMMENT '年龄',
 `sno` int(11) NOT NULL COMMENT '学号',
 PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8;

手动添加一些数据

Dao层:

@Mapper
public interface StudentDao {

 /**
 * @description: 通过student中的属性 查询到student
 * @param: student
 * @author: Yuz
 * @creat_time: 2019/8/20
 * @return: student
 **/
 Student getStudent(Student student);

 /**
 * @description: 通过age sno 属性来删除
 * @param: student
 * @author: Yuz
 * @creat_time: 2019/8/20
 * @return: void
 **/
 void deleteStudent(Student student);
}

Mapper

<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd" >
<mapper namespace="com.dao.StudentDao">
 <resultMap id="studentMap" type="com.entity.Student">
 <id property="id" column="id"/>
 <result property="age" column="age"/>
 <result property="sno" column="sno"/>
 </resultMap>

 <select id="getStudent" parameterType="com.entity.Student" resultMap="studentMap">
 select * from student where
 <if test="age != null">age=#{age}</if>
 <if test="sno !=null">sno=#{sno}</if>
 </select>

 <delete id="deleteStudent" parameterType="Student">
 delete from student
 <where>
  <if test="age != null">
  age =#{age}
  </if>
  <if test="sno != sno">
  sno=#{sno}
  </if>
 </where>
 </delete>

</mapper>

Service层:

@Service
public class StudentService {

 @Autowired
 StudentDao studentDao;

 /**
 * @description: 通过student中的属性 查询到student
 * @param: student
 * @author: Yuz
 * @creat_time: 2019/8/20
 * @return: student
 **/
 public Student getStudent(Student student){
 return studentDao.getStudent(student);
 }

 /**
 * @description: 通过age sno 属性来删除
 * @param: student
 * @author: Yuz
 * @creat_time: 2019/8/20
 * @return: void
 **/
 public void deleteStudent(Student student){
 studentDao.deleteStudent(student);
 }
}

Controller:

@RestController
@Api("学生接口")
@RequestMapping("/student")
public class StudentController {
 @Autowired
 StudentService studentService;

 /**
 * @description: 通过student中的属性 查询到student
 * @param: student
 * @author: Yuz
 * @creat_time: 2019/8/20
 * @return: student
 **/
 @ApiOperation("通过属性查询student")
 @PostMapping("/getStudent")
 Student getStudent(@RequestBody Student student){
 return studentService.getStudent(student);
 }

 /**
 * @description: 通过age sno 属性来删除
 * @param: student
 * @author: Yuz
 * @creat_time: 2019/8/20
 * @return: void
 **/
 @ApiOperation("通过属性删除student")
 @PostMapping("/delete")
 public void deleteStudent(@RequestBody Student student){
 studentService.deleteStudent(student);
 }
}

3 直接测试

通过age属性查询student:成功

通过sno属性查询:

通过属性age删除Student:

通过sno属性删除Student

补充知识:mybatis使用if条件判断,数字类型不能写 0 !=‘',否则会进不到条件拼接里面

1.对于 if条件判断:数字类型属性判断的时候

注意不可以是这种情况

<if test="delFlag!= null and delFlag!= ''">
 and del_flag = #{delFlag}
</if>

参数一个是0,一个是"",最终debug会走进case 8 里面,0和“”都会被转成double进行比较,都会变成0.0,这就是mybati中if test 0!=""判定为false的原因

以上这篇mybatis通过if语句实现增删改查操作就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持脚本之家。

相关文章

  • Spring Boot如何实现统一数据返回

    Spring Boot如何实现统一数据返回

    这篇文章主要介绍了Spring Boot如何实现统一数据返回,本文通过实例代码给大家介绍的非常详细,感兴趣的朋友跟随小编一起看看吧
    2024-07-07
  • Spring之ShutDown Hook死锁现象解读

    Spring之ShutDown Hook死锁现象解读

    这篇文章主要介绍了Spring之ShutDown Hook死锁现象解读,具有很好的参考价值,希望对大家有所帮助。如有错误或未考虑完全的地方,望不吝赐教
    2023-04-04
  • Spring @Conditional注解讲解及示例详解

    Spring @Conditional注解讲解及示例详解

    这篇文章主要介绍了Spring @Conditional注解讲解及示例详解,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧
    2019-12-12
  • MyBatis-Plus自动填充字段的详细教程

    MyBatis-Plus自动填充字段的详细教程

    今天编写一个详细的教程来介绍如何在 Spring Boot 项目中使用 MyBatis-Plus 实现自动填充时间字段(如创建时间 createTime 和更新时间 updateTime),可以分为以下几个部分,这个教程将涵盖从项目配置到自动填充的完整过程,需要的朋友可以参考下
    2024-08-08
  • 兼容Spring Boot 1.x和2.x配置类参数绑定的工具类SpringBootBindUtil

    兼容Spring Boot 1.x和2.x配置类参数绑定的工具类SpringBootBindUtil

    今天小编就为大家分享一篇关于兼容Spring Boot 1.x和2.x配置类参数绑定的工具类SpringBootBindUtil,小编觉得内容挺不错的,现在分享给大家,具有很好的参考价值,需要的朋友一起跟随小编来看看吧
    2018-12-12
  • 深入理解Java IO的flush

    深入理解Java IO的flush

    本篇文章是小编总结的关于Java IO的flush的相关知识点内容,有需要的朋友可以跟着学习下。
    2018-06-06
  • Java并发编程之线程中断

    Java并发编程之线程中断

    这篇文章主要介绍了Java并发编程线程中断,java线程中断是一种线程间的协作模式,通过设置线程的中断标志并不能直接终止该线程的运行,而是被中断的线程根据中断状态自行处理,需要的朋友可以参考一下
    2021-09-09
  • Java中的CopyOnWriteArrayList原理详解

    Java中的CopyOnWriteArrayList原理详解

    这篇文章主要介绍了Java中的CopyOnWriteArrayList原理详解,如源码所示,CopyOnWriteArrayList和ArrayList一样,都在内部维护了一个数组,操作CopyOnWriteArrayList其实就是在操作内部的数组,需要的朋友可以参考下
    2023-12-12
  • MyBatis主键自增的两种实现方法

    MyBatis主键自增的两种实现方法

    本文主要介绍了MyBatis主键自增的两种实现方法,主要包括注解方式或配置文件方式来实现,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧
    2024-01-01
  • idea中使用maven archetype新建项目时卡住问题解决方案

    idea中使用maven archetype新建项目时卡住问题解决方案

    这篇文章主要介绍了idea中使用maven archetype新建项目时卡住,解决本问题的方法,就是在maven的runner加上参数-DarchetypeCatalog=local就可以了,不需要下载xml文件再放到指定目录,需要的朋友可以参考下
    2023-08-08

最新评论