Mybatis学习笔记7 参数处理专题

Mybatis学习笔记6 使用时的一些小技巧_biubiubiu0706的博客-CSDN博客

1.单个简单类型参数

2.Map参数

3.实体类参数

4.多参数

5.@Param注解(命名参数)

6.@Param源码分析

建表

插入点数据

新建模块

pom.xml

复制代码
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>

    <groupId>org.example</groupId>
    <artifactId>mybatis-06</artifactId>
    <version>1.0-SNAPSHOT</version>

    <properties>
        <maven.compiler.source>8</maven.compiler.source>
        <maven.compiler.target>8</maven.compiler.target>
    </properties>

    <dependencies>
        <!--mybatis依赖-->
        <dependency>
            <groupId>org.mybatis</groupId>
            <artifactId>mybatis</artifactId>
            <version>3.5.10</version>
        </dependency>
        <!--mysql驱动-->
        <dependency>
            <groupId>mysql</groupId>
            <artifactId>mysql-connector-java</artifactId>
            <version>8.0.30</version>
        </dependency>
        <!--junit-->
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>4.13.2</version>
            <scope>test</scope>
        </dependency>
        <!--logback-->
        <dependency>
            <groupId>ch.qos.logback</groupId>
            <artifactId>logback-classic</artifactId>
            <version>1.2.11</version>
        </dependency>
    </dependencies>
</project>

目录结构

1.单个简单类型参数包括:

byte short int long float double char

Byte Short Integer Long Double Char

String

java.util.Date

java.sql.Date

持久层接口

pojo

映射文件

复制代码
<?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.example.mapper.StuMapper">
    <!--
    parameterType属性的作用:
        告诉mybatis框架,我这个方法的参数类型是什么类型。
        mybatis框架自身带有类型自动推断机制,所以大部分情况下parameterType属性都是可以省略不写的。

        SQL语句最终是这样的:
            select * from t_student where id = ?
        JDBC代码是一定要给?传值的。
        怎么传值?ps.setXxx(第几个问号, 传什么值);
            ps.setLong(1, 1L);
            ps.setString(1, "zhangsan");
            ps.setDate(1, new Date());
            ps.setInt(1, 100);
            ...
        mybatis底层到底调用setXxx的哪个方法,取决于parameterType属性的值。

    注意:mybatis框架实际上内置了很多别名。可以参考开发手册。

    -->
    <select id="selectById" resultType="student" parameterType="java.lang.Long">
        select * from t_student where id=#{id}
    </select>

    <select id="selectByName" resultType="student">
        select * from t_student where name=#{name}
    </select>

    <select id="selectByBirth" resultType="student">
        select * from t_student where birth=#{birth}
    </select>

    <select id="selectBySex" resultType="student">
        select * from t_student where sex=#{sex}
    </select>
</mapper>

测试代码

复制代码
import com.example.mapper.StuMapper;
import com.example.pojo.Student;
import com.example.utils.SqlSessionUtil;
import org.apache.ibatis.session.SqlSession;

import java.text.DateFormat;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.List;

/**
 * @author hrui
 * @date 2023/9/19 1:24
 */
public class Test {
    @org.junit.Test
    public void selectBySex(){
        SqlSession sqlSession = SqlSessionUtil.openSession();
        StuMapper mapper = sqlSession.getMapper(StuMapper.class);
        List<Student> students = mapper.selectBySex('男');
        students.forEach(student-> System.out.println(student));
        sqlSession.close();
    }
    @org.junit.Test
    public void selectByBirth() throws ParseException {
        SqlSession sqlSession = SqlSessionUtil.openSession();
        StuMapper mapper = sqlSession.getMapper(StuMapper.class);
        //List<Student> students = mapper.selectByBirth(new Date(1978-1900,1,3));

        SimpleDateFormat simpleDateFormat=new SimpleDateFormat("yyyy-MM-dd");
        Date parse = simpleDateFormat.parse("1980-10-11");
        List<Student> students = mapper.selectByBirth(parse);
        students.forEach(student-> System.out.println(student));
        sqlSession.close();
    }
    @org.junit.Test
    public void selectByName(){
        SqlSession sqlSession = SqlSessionUtil.openSession();
        StuMapper mapper = sqlSession.getMapper(StuMapper.class);
        List<Student> students = mapper.selectByName("张三");
        students.forEach(student-> System.out.println(student));
        sqlSession.close();
    }

    @org.junit.Test
    public void selectById(){
        SqlSession sqlSession = SqlSessionUtil.openSession();
        StuMapper mapper = sqlSession.getMapper(StuMapper.class);
        List<Student> students = mapper.selectById(1L);
        students.forEach(student-> System.out.println(student));
        sqlSession.close();
    }
}

加上这个或许效率高一点,但是一般不这么麻烦,不需要

2.Map参数

map也可以这样,#{XXX}是key就行

3.实体类参数

4.多参数

假如说在没有使用@Param指定参数名时候,你非想试试其他的

这里注意下,低版本mybatis可以写#{0},#{1}

上面也可以混着用 比如第一个参数#{arg0} 第二个参数#{param2} 也是可以的

使用@Param指定名字 这样 arg0 arg1就失效了 但是param1 param2还是可以用

相关推荐
shandianchengzi21 分钟前
【小白向】错位排列|图文解释公考常见题目错位排列的递推式Dn=(n-1)(Dn-2+Dn-1)推导方式
笔记·算法·公考·递推·排列·考公
浅念-30 分钟前
C语言编译与链接全流程:从源码到可执行程序的幕后之旅
c语言·开发语言·数据结构·经验分享·笔记·学习·算法
ZH154558913138 分钟前
Flutter for OpenHarmony Python学习助手实战:API接口开发的实现
python·学习·flutter
爱吃生蚝的于勒42 分钟前
【Linux】进程信号之捕捉(三)
linux·运维·服务器·c语言·数据结构·c++·学习
奶茶精Gaaa1 小时前
工具分享--F12使用技巧
学习
The森1 小时前
Linux IO 模型纵深解析 01:从 Unix 传统到 Linux 内核的 IO 第一性原理
linux·服务器·c语言·经验分享·笔记·unix
tq10861 小时前
Skills 的问题与解决方案
笔记
三水不滴1 小时前
有 HTTP 了为什么还要有 RPC?
经验分享·笔记·网络协议·计算机网络·http·rpc
久邦科技1 小时前
奈飞工厂中文官网入口,影视在线观看|打不开|电脑版下载
学习
三块可乐两块冰1 小时前
【第二十九周】机器学习笔记三十
笔记