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还是可以用

相关推荐
普宁彭于晏36 分钟前
元素水平垂直居中的方法
前端·css·笔记·css3
whoarethenext1 小时前
C++ OpenCV 学习路线图
c++·opencv·学习
m0_637146931 小时前
计算机网络基础总结:TCP/IP 模型、TCP vs UDP、DNS 查询过程
笔记·tcp/ip·计算机网络
恰薯条的屑海鸥1 小时前
零基础在实践中学习网络安全-皮卡丘靶场(第十四期-XXE模块)
网络·学习·安全·web安全·渗透测试
Lester_11012 小时前
嵌入式学习笔记 - freeRTOS vTaskPlaceOnEventList()函数解析
笔记·学习
moxiaoran57533 小时前
uni-app学习笔记二十三--交互反馈showToast用法
笔记·学习·uni-app
scdifsn10 小时前
动手学深度学习12.7. 参数服务器-笔记&练习(PyTorch)
pytorch·笔记·深度学习·分布式计算·数据并行·参数服务器
恰薯条的屑海鸥10 小时前
零基础在实践中学习网络安全-皮卡丘靶场(第十六期-SSRF模块)
数据库·学习·安全·web安全·渗透测试·网络安全学习
喜欢吃燃面11 小时前
C++刷题:日期模拟(1)
c++·学习·算法
2301_7976042412 小时前
学习记录:DAY32
学习