Mybatis复习笔记

Posted 怎言笑i

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Mybatis复习笔记相关的知识,希望对你有一定的参考价值。

1、简介

1.1 什么是Mybatis

在这里插入图片描述

  • MyBatis 是一款优秀的持久层框架;
  • 它支持自定义 SQL、存储过程以及高级映射。MyBatis 免除了几乎所有的 JDBC 代码以及设置参数和获取结果集的工作。MyBatis 可以通过简单的 XML 或注解来配置和映射原始类型、接口和 Java POJO(Plain Old Java Objects,普通老式 Java 对象)为数据库中的记录。

1.2 持久化

数据持久化

  • 持久化就是将程序的数据在持久状态和瞬时状态转化的过程
  • 内存:断电即失
  • 数据库(Jdbc),io文件持久化。

为什么要持久化?

  • 有一些对象,不能让他丢掉
  • 内存太贵

1.3 持久层

Dao层、Service层、Controller层

  • 完成持久化工作的代码块
  • 层界限十分明显

1.4 为什么需要MyBatis

  • 帮助程序员将数据存入到数据库中
  • 方便
  • 传统的JDBC代码太复杂了,简化,框架,自动化
  • 不用MyBatis也可以,技术没有高低之分
  • 优点:
    • 简单易学
    • 灵活
    • sql和代码的分离,提高了可维护性。
    • 提供映射标签,支持对象与数据库的orm字段关系映射
    • 提供对象关系映射标签,支持对象关系组建维护
    • 提供xml标签,支持编写动态sql

2、第一个Mybatis程序

思路:搭建环境 --> 导入MyBatis --> 编写代码 --> 测试

2.1 搭建环境

新建项目

  1. 创建一个普通的maven项目

  2. 删除src目录 (就可以把此工程当做父工程了,然后创建子工程)

  3. 导入maven依赖

    <!--导入依赖-->
    <dependencies>
        <!--mysqlq驱动-->
        <dependency>
            <groupId>mysql</groupId>
            <artifactId>mysql-connector-java</artifactId>
            <version>8.0.22</version>
        </dependency>
        <!--mybatis-->
        <dependency>
            <groupId>org.mybatis</groupId>
            <artifactId>mybatis</artifactId>
            <version>3.5.4</version>
        </dependency>
        <!--junit-->
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>4.12</version>
            <scope>test</scope>
        </dependency>
    </dependencies>
    
  4. 创建一个Module

2.2 创建一个模块

编写mybatis的核心配置文件

<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE configuration
        PUBLIC "-//mybatis.org//DTD Config 3.0//EN"
        "http://mybatis.org/dtd/mybatis-3-config.dtd">
<!--configuration核心配置文件-->
<configuration>
    <environments default="development">
        <environment id="development">
            <transactionManager type="JDBC"/>
            <dataSource type="POOLED">
                <property name="driver" value="com.mysql.jdbc.Driver"/>
                <property name="url" value="jdbc:mysql://localhost:3306/mybatis?userSSL=true&amp;useUnicode=true&amp;characterEncoding=UTF-8&amp;serverTimezone=UTC"/>
                <property name="username" value="root"/>
                <property name="password" value="123456"/>
            </dataSource>
        </environment>
    </environments>
</configuration>

编写mybatis工具类

public class MybatisUtils {
    static SqlSessionFactory sqlSessionFactory = null;
    static {
        try {
            //使用Mybatis第一步 :获取sqlSessionFactory对象
            String resource = "mybatis-config.xml";
            InputStream inputStream = Resources.getResourceAsStream(resource);
            sqlSessionFactory = new SqlSessionFactoryBuilder().build(inputStream);
        } catch (IOException e) {
            e.printStackTrace();
        }
    }
    //既然有了 SqlSessionFactory,顾名思义,我们可以从中获得 SqlSession 的实例.
    // SqlSession 提供了在数据库执行 SQL 命令所需的所有方法。
    public static SqlSession getSqlSession(){
        //SqlSession sqlSession = sqlSessionFactory.openSession();
        //return  sqlSession;
        return sqlSessionFactory.openSession();
    }
}

2.3测试

2.3.1注意点

错误:org.apache.ibatis.binding.BindingException: Type interface com.Sun.Dao.UserDao is not known to the MapperRegistry.

< !--每一个Mapper.xml都需要Mybatis核心配置文件中注册!-->

<mappers>
    <mapper resource="com/Sun/Dao/UserMapper.xml"></mapper>
</mappers>

2.3.2约定大于配置

<!--在build中配置resources,来防止我们资源导出失败的问题-->
<build>
    <resources>
        <resource>
            <directory>src/main/resources</directory>
            <includes>
                <include>**/*.properties</include>
                <include>**/*.xml</include>
            </includes>
            <filtering>true</filtering>
        </resource>
        <resource>
            <directory>src/main/java</directory>
            <includes>
                <include>**/*.properties</include>
                <include>**/*.xml</include>
            </includes>
            <filtering>true</filtering>
        </resource>
    </resources>
</build>

能会遇到的问题:

  1. 配置文件没有注册
  2. 绑定接口错误
  3. 方法名不对
  4. 返回类型不对
  5. Maven导出资源问题

3、CURD

3.1、namespace

namespace中的包名要和Dao/Mapper接口的包名一致

3.2. select

选择,查询语句;

  • id:就是对应的namespace中的方法名;

  • resultType : Sql语句执行的返回值;

  • parameterType : 参数类型;

    编写接口

public interface UserMapper {
    List<User> getAllUser();
    User getUserByID(int id);
}

编写对应的mapper中的sql语句

<select id="getAllUser" resultType="com.Sun.pojo.User">
    select * from mybatis.user
</select>

测试

@Test
public void addUser(){
    SqlSession sqlSession = MybatisUtils.getSqlSession();
    UserMapper mapper = sqlSession.getMapper(UserMapper.class);
    int number = mapper.addUser(new User(6, "小明", "234567"));
    if(number>0){
        System.out.println("插入成功");
    }
    sqlSession.commit();
    sqlSession.close();
}

3.3.注意:增删改查一定要提交事务:

sqlSession.commit();

3.4. Insert

<insert id="addUser"  parameterType="com.Sun.pojo.User">
    insert into mybatis.user(id,name,pwd) values (#{id},#{name},#{pwd});
</insert>

3.5. update

<update id="updateUser" parameterType="com.Sun.pojo.User">
    update mybatis.user set  name=#{name},pwd=#{pwd}  where id=#{id} ;
</update>

3.6. Delete

<delete id="deleteUser" parameterType="int">
    delete from mybatis.user where id=#{id}
</delete>

3.7.分析错误

标签不要匹配错

resource绑定mapper,需要使用路径!

程序配置文件必须符合规范!

NullPointerException,没有注册到资源!

输出的xml文件中存在中文乱码问题!

maven资源没有导出问题!

3.8.万能Map

假设,我们的实体类,或者数据库中的表,字段或者参数过多,我们应该考虑使用Map

UserMapper接口

int addUser2(Map<String,Object>map);

UserMapper.xml

<insert id="addUser2"  parameterType="com.Sun.pojo.User">
    insert into mybatis.user (id,name,pwd) values (#{userid},#{username},#{userpassword})
</insert>

测试

@Test
public void addUser2(){
    SqlSession sqlSession = MybatisUtils.getSqlSession();
    UserMapper mapper = sqlSession.getMapper(UserMapper.class);
    HashMap<String, Object> map = new HashMap<>();
    map.put("userid",7);
    map.put("username","小李");
    map.put("userpassword","12345678");
    int number = mapper.addUser2(map);
    if(number>0){
        System.out.println("插入成功");
    }
    sqlSession.commit();
    sqlSession.close();
}

Map传递参数,直接在sql中取出key即可! 【parameter=“map”】

对象传递参数,直接在sql中取出对象的属性即可! 【parameter=“Object”】

只有一个基本类型参数的情况下,可以直接在sql中取到

多个参数用Map , 或者注解!

3.9.模糊查询

模糊查询这么写?

  1. Java代码执行的时候

以上是关于Mybatis复习笔记的主要内容,如果未能解决你的问题,请参考以下文章

MyBatis-05-笔记

Mybatis 学习笔记总结

Mybatis学习笔记:动态SQL

MyBatis复习总结

MyBatis复习总结

动态SQL基础概念复习(Javaweb作业5)