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语句实现增删改查操作就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持我们。

(0)

相关推荐

  • Mybatis中的动态SQL语句解析

    这篇文章主要介绍了Mybatis中的动态SQL语句解析,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友可以参考下 Mybatis中配置SQL有两种方式,一种是利用xml 方式进行配置,一种是利用注解进行配置. Mybatis使用注解配置SQL,但是由于配置功能受限,而且对于复杂的SQL而言可读性很差,所以很少使用. Mybatis常用xml配置的方式,使用xml的几个简单的元素,便能完成动态SQL的功能,大量的判断都可以在mybaties的映射xml里面配

  • Mybatis 动态sql if 判读条件等于一个数字的案例

    在Mybatis中 mapper中 boolean updateRegisterCompanyFlag(@Param(value = "companyId") String companyId, @Param(value = "flag") String flag); 传入的flag类型为String,但在mapper.XML中进行判断是下意识地以为判断的值要加上引号 <if test=" '4' == flag "> , LAST_

  • Mybatis 动态SQL的几种实现方法

    案例sql脚本 DROP DATABASE IF EXISTS `javacode2018`; CREATE DATABASE `javacode2018`; USE `javacode2018`; DROP TABLE IF EXISTS t_user; CREATE TABLE t_user( id int AUTO_INCREMENT PRIMARY KEY COMMENT '用户id', name VARCHAR(32) NOT NULL DEFAULT '' COMMENT '用户名'

  • 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 getStu

  • MyBatis存储过程、MyBatis分页、MyBatis一对多增删改查操作

    一.用到的实体类如下: Student.java package com.company.entity; import java.io.Serializable; import java.util.Date; public class Student implements Serializable{ private static final long serialVersionUID = 1L; private int id; private String name; private Date

  • mybatis抽取基类BaseMapper增删改查的实现

    目录 准备工作: 1:数据库表 2:准备实体类 步骤1:编写工具类Tools:作用:用于驼峰和数据库字段的转换 步骤2:自定义两个注解,分别用于类字段的排除和字义主键 步骤3:自定义动态sql生成类BaseSqlProvider<T> 步骤4:编写BaseMapper基类接口 举例: 目前项目当中使用mapper.xml文件方式对数据库进行操作,但是每个里边都有增/删/改/查,为了方便开发,把这些公共的代码提取出来,不用当做基类,不用每个Mapper文件都写了 准备工作: 1:数据库表 CRE

  • Mybatis步骤分解实现一个增删改查程序

    目录 1.idea新建Maven项目Mybatis-study 将项目里的src文件夹删掉 依次将此项目作为父项目 2.在Mybatis-study中新建模块mybatis-01 在mybatis的pom文件中可以看到其父项目为ybatis-study <parent>    <artifactId>MyBatis-study</artifactId>    <groupId>org.example</groupId>    <versio

  • MyBatis后端对数据库进行增删改查等操作实例

    目录 1.MyBatis 是什么? 2. MyBatis 的重要性 3. MyBatis 查询 3.1 创建数据库和表 3.2 添加MyBatis框架⽀持 3.2.1 新项目添加MyBatis 3.2.1 老项⽬添加 MyBatis 3.3 配置连接字符串和MyBatis 3.3.1 配置连接字符串 3.3.2 配置mybatis 中的 xml 保存路径 3.4 添加后端代码 3.4.1 添加实体类 3.4.2 添加 mapper 接口 3.4.3 添加UserMapper.xml 3.4.4

  • Spring boot+mybatis+thymeleaf 实现登录注册增删改查功能的示例代码

    本文重在实现理解,过滤器,业务,逻辑需求,样式请无视.. 项目结构如下 1.idea新建Spring boot项目,在pom中加上thymeleaf和mybatis支持.pom.xml代码如下 <?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3

  • MyBatis逆向工程生成dao层增删改查的操作

    目录 MyBatis逆向工程生成dao层增删改查 如下: Mybatis反向工程的使用 首先,用eclipse 建一个maven 项目 这时我们的项目结构是这个样子的 现在要写一下代码了 例如,我们在新的xml文件中这样写 MyBatis逆向工程生成dao层增删改查 如下: int countByExample(BUserExample example); //根据条件查询数量 /** * 示例 * public int countByExample() { * BUserExample use

  • mybatis3使用@Select等注解实现增删改查操作

    1.需要的jar包 2.目录树 3.具体代码 一.需要的jar包 第一个:mybatis的jar包 第二个:mysql数据的驱动 二.目录树 三.具体代码 使用框架,配置文件先行! conf.xml:(配置 登录数据库,映射文件) <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE configuration PUBLIC "-//mybatis.org//DTD Config 3.0//EN

  • 使用IDEA对Oracle数据库进行简单增删改查操作

    1.1 Java中的数据存储技术 在Java中,数据库存取技术可分为如下几类: 1.JDBC直接访问数据库 2.JDO(Java Data Object)是Java对象持久化的新的规范,也是一个用于存取某种数据仓库中的对象的标准化API. 3.第三方O/R 比如Hibernate,Mybatis等 JDBC是java访问数据库的基石,JDO.Hibernate.MyBatis,JDO,Hibernate.MyBatyis等只是更好的封装的JDBC. 最近用idea连接Oracle数据库 并且实现

  • Java语言实现对MySql数据库中数据的增删改查操作的代码

    简单说操作的步骤: 1.连接数据库 2.将SQL语句发送到数据库 3.执行SQL语句 这里举个例子: 在一个数据库中有个students表,表中有学号(Id),姓名(Name),性别(Sex),地址(Address),电话(Phone),专业(Dept). 这里把这个表写成一个学生信息类(Info_student) (请先确保看了例子说明,不然代码有的地方可能看不明白) 要实现操纵我们首先得连接数据库,因为每个操作都要进行连接操作,所以我们直接把连接的操作封装在一个类中,需要连接的时候直接调用可

随机推荐