• MyBatis



    原始jdbc操作的分析

    原始jdbc开发存在的问题如下:

    • 数据库连接创建、释放频繁造成系统资源浪费从而影响系统性能
    • sql语句在代码中硬编码,造成代码不易维护,实际应用sql变化的可能较大,sql变动需要改变java代码。
    • 查询操作时,需要手动将结果集中的数据手动封装到实体中。插入操作时,需要手动将实体的数据设置到sql语句的占位符位置

    应对上述问题给出的解决方案:

    • 使用数据库连接池初始化连接资源
    • 将sql语句抽取到xml配置文件中
    • 使用反射、内省等底层技术,自动将实体与表进行属性与字段的自动映射

    一、简介

    MyBatis官网

    MyBatis开发步骤:

    • 添加MyBatis的坐标
    • 创建user数据表
    • 编写User实体类
    • 编写映射文件UserMapper.xml
    • 编写核心文件SqlMapConfig.xml
    • 编写测试类

    二、环境搭建及案例

    1. 导入MyBatis的坐标和其他相关坐标

    
    <dependency>
    <groupId>org.mybatisgroupId>
    <artifactId>mybatisartifactId>
    <version>3.4.5version>
    dependency>
    
    <dependency>
    <groupId>mysqlgroupId>
    <artifactId>mysql-connector-javaartifactId>
    <version>5.1.6version>
    <scope>runtimescope>
    dependency>
    
    
    <dependency>
    <groupId>junitgroupId>
    <artifactId>junitartifactId>
    <version>4.12version>
    <scope>testscope>
    dependency>
    
    <dependency>
    <groupId>log4jgroupId>
    <artifactId>log4jartifactId>
    <version>1.2.12version>
    dependency>
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27

    2、创建user数据表及编写实体类

    private Integer id;
    	private String uname;
    	private String upwd;
    	private String email;
    	private String phone;
    	private String addr;
    	private Date birth;
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7

    3、 编写UserDao映射文件

    在这里插入图片描述

    
    DOCTYPE mapper
            PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
            "https://mybatis.org/dtd/mybatis-3-mapper.dtd">
    
    <mapper namespace="com.wk.dao.UserDao">
    
        <insert id="addUser" parameterType="com.wk.entity.User">
            insert into tb_user (uname,upwd,email,phone,addr,birth)
            values(#{uname},#{upwd},#{email},#{phone},#{addr},#{birth})
        insert>
    mapper>
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12

    在这里插入图片描述

    插入操作注意问题

    • 插入语句使用insert标签
    • 在映射文件中使用parameterType属性指定要插入的数据类型
    • Sql语句中使用#{实体属性名}方式引用实体中的属性值
    • 插入操作使用的API是sqlSession.insert(“命名空间.id”,实体对象);
    • 插入操作涉及数据库数据变化,所以要使用sqlSession对象显示的提交事务,即sqlSession.commit()

    修改操作注意的问题

    • 修改语句使用update标签
    • 修改操作使用的API是sqlSession.update(“命名空间.id”,实体对象);

    删除操作注意问题

    • 删除语句使用delete标签
    • Sql语句中使用#{任意字符串}方式引用传递的单个参数
    • 删除操作使用的API是sqlSession.delete(“命名空间.id”,Object);

    三、Mybatis的Dao层实现(代理开发方式)

    1、代理开发方式简介(主流)

    Mapper 接口开发方法只需要程序员编写Mapper 接口(相当于Dao 接口),由Mybatis 框架根据接口定义创建接口的动态代理对象,代理对象的方法体同上边Dao接口实现类方法。

    Mapper 接口开发需要遵循以下规范:

    • 1、 Mapper.xml文件中的namespace与mapper接口的全限定名相同
    • 2、 Mapper接口方法名和Mapper.xml中定义的每个statement的id相同
    • 3、 Mapper接口方法的输入参数类型和mapper.xml中定义的每个sql的- parameterType的类型相同
    • 4、 Mapper接口方法的输出参数类型和mapper.xml中定义的每个sql的resultType的类型相同

    在这里插入图片描述

    四、动态SQL语句

    1、

    我们根据实体类的不同取值,使用不同的 SQL语句来进行查询。比如在 id如果不为空时可以根据id查询,如果username 不同空时还要加入用户名作为条件。

    <select id="findByCondition" parameterType="user" resultType="user">
    select * from User
    <where>
    <if test="id!=0">
    and id=#{id}
    if>
    <if test="username!=null">
    and username=#{username}
    if>
    where>
    select>
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11

    2、

    标签用于遍历集合,它的属性:

    • collection:代表要遍历的集合元素,注意编写时不要写#{}
    • open:代表语句的开始部分
    • close:代表结束部分
    • item:代表遍历集合的每个元素,生成的变量名
    • sperator:代表分隔符
    
    <select id="findByid" parameterType="list" resultMap="user">
            select * from user
            <where>
                <foreach collection="list" open="id in(" close=")" item="id" separator=",">
                    #{id}
                foreach>
            where>
        select>
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9

    3、SQL片段抽取

    
    sql>
    <select id="findById" parameterType="int" resultType="user">
    <include refid="selectUser">include> where id=#{id}
    select>
    <select id="findByIds" parameterType="list" resultType="user">
    <include refid="selectUser">include>
    <where>
    <foreach collection="array" open="id in(" close=")" item="id" separator=",">
    #{id}
    foreach>
    where>
    select>
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13

    五、 typeHandlers标签

    你可以重写类型处理器或创建你自己的类型处理器来处理不支持的或非标准的类型。具体做法为:实现org.apache.ibatis.type.TypeHandler 接口, 或继承一个很便利的类 org.apache.ibatis.type.BaseTypeHandler, 然后可以选择性地将它映射到一个JDBC类型。
    例如需求:一个Java中的Date数据类型,我想将之存到数据库的时候存成一个1970年至今的毫秒数,取出来时转换成java的Date,即java的Date与数据库的varchar毫秒值之间转换。

    开发步骤:

    • 定义转换类继承类BaseTypeHandler
    • 覆盖4个未实现的方法,其中setNonNullParameter为java程序设置数据到数据库的回调方法,getNullableResult为查询时 mysql的字符串类型转换成 java的Type类型的方法
    • 在MyBatis核心配置文件中进行注册
    • 测试转换是否正确
    public class MyDateTypeHandler extends BaseTypeHandler<Date> {
    public void setNonNullParameter(PreparedStatement preparedStatement, int i, Date date, JdbcType type) 
    {
    preparedStatement.setString(i,date.getTime()+"");
    }
    public Date getNullableResult(ResultSet resultSet, String s) throws SQLException {
    return new Date(resultSet.getLong(s));
    }
    public Date getNullableResult(ResultSet resultSet, int i) throws SQLException {
    return new Date(resultSet.getLong(i));
    }
    public Date getNullableResult(CallableStatement callableStatement, int i) throws SQLException {
    return callableStatement.getDate(i);
    }
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    
    <typeHandlers>
    <typeHandler handler="com.itheima.typeHandlers.MyDateTypeHandler">typeHandler>
    typeHandlers>
    
    • 1
    • 2
    • 3
    • 4

    六、plugins标签

    MyBatis可以使用第三方的插件来对功能进行扩展,分页助手PageHelper是将分页的复杂操作进行封装,使用简单的方式即可获得分页的相关数据

    开发步骤:

    • 导入通用PageHelper的坐标
    • 在mybatis核心配置文件中配置PageHelper插件
    • 测试分页数据获取

    1、导入通用PageHelper坐标

    
    <dependency>
    <groupId>com.github.pagehelpergroupId>
    <artifactId>pagehelperartifactId>
    <version>3.7.5version>
    dependency>
    <dependency>
    <groupId>com.github.jsqlparsergroupId>
    <artifactId>jsqlparserartifactId>
    <version>0.9.1version>
    dependency>
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11

    2、在mybatis核心配置文件中配置PageHelper插件

    
    <plugin interceptor="com.github.pagehelper.PageHelper">
    
    <property name="dialect" value="mysql"/>
    plugin>
    
    • 1
    • 2
    • 3
    • 4
    • 5


    简答题

    Mybatis中mapper文件一般用什么符号表示参数 #
    $也可以表示
    但是用$表示存在SQL注入的风险,$底层是Statement来处理SQL语句 直接拼成一条字符串
    #么有SQL注入风险,#底层是preparestatement来处理SQL语句的;通过占位符?来处理


    MyBatis核心配置文件常用标签:

    • 1、properties标签:该标签可以加载外部的properties文件
    • 2、typeAliases标签:设置类型别名
    • 3、environments标签:数据源环境配置标签
    • 4、typeHandlers标签:配置自定义类型处理器
    • 5、plugins标签:配置MyBatis的插件

  • 相关阅读:
    提振信心!1-7月新车智能化「持续增长」,同比增速超70%
    Protobuf应用层协议设计
    Docker 安装Redis
    多线程间的通信方式你知道几种?
    【校招VIP】前端基础之post和get
    启动微服务,提示驱动程序无法通过使用安全套接字层(SSL)加密与 SQL Server 建立安全连接
    学习路之PHP--laravel数据库迁移
    jupyter 挂掉的内核和transform=torchvision.transforms.ToTensor()
    Open-Dis的C++版本编译(CMake-gpu 3.21.4)以及SDL2和SDL_net库的配置使用
    【流程图——讲解】
  • 原文地址:https://blog.csdn.net/qq_54351538/article/details/128019426