Mybatis基础

发布时间:2023年12月18日

1、简介

1.1、什么是mybatis

  • MyBatis 是一款优秀的持久层框架

  • 它支持自定义 SQL、存储过程以及高级映射

  • MyBatis 免除了几乎所有的 JDBC 代码以及设置参数和获取结果集的工作

  • MyBatis 可以通过简单的 XML 或注解来配置和映射原始类型、接口和 Java POJO(Plain Old Java Objects,普通老式 Java 对象)为数据库中的记录。

  • MyBatis本是apache的一个开源项目iBatis,2010年这个项目由apache software foundation迁移到了google code,并且改名为MyBatis。2013年11月迁移到GitHub

如何获得mybatis:

  • maven仓库:

    <!-- https://mvnrepository.com/artifact/org.mybatis/mybatis -->
    ?<dependency>
    ? ? ?<groupId>org.mybatis</groupId>
    ? ? ?<artifactId>mybatis</artifactId>
    ? ? ?<version>3.5.6</version>
    ?</dependency>
    ??
    ? ? ? <!--Mysql驱动-->
    ? ? ? ? ?<dependency>
    ? ? ? ? ? ? ?<groupId>mysql</groupId>
    ? ? ? ? ? ? ?<artifactId>mysql-connector-java</artifactId>
    ? ? ? ? ? ? ?<version>5.1.46</version>
    ? ? ? ? ?</dependency>
    ??
    ? ? ?
    ? ? ? ? ?<!--junit-->
    ? ? ? ? ?<dependency>
    ? ? ? ? ? ? ?<groupId>junit</groupId>
    ? ? ? ? ? ? ?<artifactId>junit</artifactId>
    ? ? ? ? ? ? ?<version>4.12</version>
    ? ? ? ? ?</dependency>

  • Github

  • 中文文档

1.2、持久化

数据持久化

  • 持久化就是将程序的数据在持久状态和瞬时状态转化的过程

  • 内存: 断电即失

  • 数据库(jdbc) io文件持久化

  • 生活:冷藏 罐头

为什么需要持久化?

有一些对象,不能让他丢掉。

  • 内存太贵了

1.3、持久层

  • 完成持久化工作的代码块

  • 层界限十分明显

1.4、为什么需要mybatis

  • 帮助程序猿将数据存入到数据库中。

  • 方便

  • 传统的jdbc代码太复杂了。简化。框架。自动化。

  • 不用Mybatis也可以。更容易上手。

最重要的一点:使用的人多

2、第一个mybatis环境

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

2.1、搭建环境

搭建数据库

USE `mybatis`;
??
?CREATE TABLE `user`(
?    `id` INT(20) NOT NULL PRIMARY KEY,
?    `name` VARCHAR(30) DEFAULT NULL,
?    `pwd` VARCHAR(30) DEFAULT NULL
?)ENGINE=INNODB DEFAULT CHARSET=utf8;
??
?INSERT INTO `user`(`id`,`name`,`pwd`) VALUES
?(1,'狂神','123456'),
?(2,'张三','123456'),
?(3,'李四','123456');

新建项目

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

2.删除src目录

3.导依赖

?<!-- https://mvnrepository.com/artifact/org.mybatis/mybatis -->
?<dependency>
? ? ?<groupId>org.mybatis</groupId>
? ? ?<artifactId>mybatis</artifactId>
? ? ?<version>3.5.6</version>
?</dependency>
??
? ? ? <!--Mysql驱动-->
? ? ? ? ?<dependency>
? ? ? ? ? ? ?<groupId>mysql</groupId>
? ? ? ? ? ? ?<artifactId>mysql-connector-java</artifactId>
? ? ? ? ? ? ?<version>5.1.46</version>
? ? ? ? ?</dependency>
??
? ? ?
? ? ? ? ?<!--junit-->
? ? ? ? ?<dependency>
? ? ? ? ? ? ?<groupId>junit</groupId>
? ? ? ? ? ? ?<artifactId>junit</artifactId>
? ? ? ? ? ? ?<version>4.12</version>
? ? ? ? ?</dependency>

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>
??
? ? ?<!-- 引入数据库连接信息的配置文件 -->
?<!-- ?  <properties resource="jdbc.properties"/>-->
??
? ? ?<!-- environments:配置多个连接数据库环境 -->
? ? ?<environments default="development">
? ? ? ? ?<!-- environment:配置某个具体的环境 -->
? ? ? ? ?<environment id="development">
? ? ? ? ? ? ?<!-- transactionManager:设置事务管理方式 -->
? ? ? ? ? ? ?<transactionManager type="JDBC"/>
? ? ? ? ? ? ?<!-- dataSource:配置数据源 -->
? ? ? ? ? ? ?<dataSource type="POOLED">
? ? ? ? ? ? ? ? ?<!-- 设置连接数据库的驱动 -->
? ? ? ? ? ? ? ? ?<property name="driver" value="com.mysql.jdbc.Driver}"/>
? ? ? ? ? ? ? ? ?<!-- 设置连接数据库的地址 -->
? ? ? ? ? ? ? ? ?<property name="url" value="jdbc:mysql://localhost:3306/mybatis?useSSL=true&amp;userUnicode=true&amp;characterEncoding=UTF-8"/>
? ? ? ? ? ? ? ? ?<!-- 设置连接数据库的用户名 -->
? ? ? ? ? ? ? ? ?<property name="username" value="root"/>
? ? ? ? ? ? ? ? ?<!-- 设置连接数据库的密码 -->
? ? ? ? ? ? ? ? ?<property name="password" value="对应你的数据库密码"/>
? ? ? ? ? ? ?</dataSource>
? ? ? ? ?</environment>
? ? ?</environments>
??
? ? ?<!--引入映射文件-->
?<!-- ?  <mappers>-->
? ? ? ? ?<!--
? ? ? ? ? ? ?指定 XxxMapper.xml 配置文件的路径
? ? ? ? ? ? ?resource属性自动会从类的根路径下开始查找资源
? ? ? ? ? ? ?url属性从绝对路径当中加载资源,一般很少使用,语法格式如下:file:///绝对路径
? ? ? ? ?-->
?<!-- ? ? ?  <mapper resource="EmpMapper.xml"/>-->
?<!-- ?  </mappers>-->
?</configuration>

  • 编写myabtis工具类

import org.apache.ibatis.io.Resources;
?import org.apache.ibatis.session.SqlSession;
?import org.apache.ibatis.session.SqlSessionFactory;
?import org.apache.ibatis.session.SqlSessionFactoryBuilder;
??
?import java.io.IOException;
?import java.io.InputStream;
??
?//sqlSessionFactory sqlSession
?public class MybatisUtils {
? ? ?//提升作用域
? ? ?private static SqlSessionFactory sqlSessionFactory;
? ? ?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(){
? ? ? ? ?return sqlSessionFactory.openSession();
? ?  }
??
?}
??

2.3、编写代码

  • 实体类

?import lombok.AllArgsConstructor;
?import lombok.Data;
?import lombok.NoArgsConstructor;
??
?@Data
?@AllArgsConstructor
?@NoArgsConstructor
?//实体类
?public class User {
? ? ?private int id;
? ? ?private String name;
? ? ?private String pwd;
??
?}
 
  • Dao接口

    ??
    ?import com.bo.pojo.User;
    ??
    ?import java.util.List;
    ??
    ?public interface UserDao {
    ? ? ?List<User> getUserList(); 
    ?}
     
  • 接口实现类 由原来的impl转换为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">
?<!--namespace=绑定一个对应的Dao/Mapper接口-->
?<mapper namespace="com.bo.dao.UserDao">
? ? ?<!--select查询语句-->
? ? ?<!--id相当于原来重写方法的名字-->
? ? ?<select id="getUserList" resultType="com.bo.pojo.User">
? ? ? ?  select * from mybatis.user
? ? ?</select>
?</mapper>

2.4测试

注意点:

org.apache.ibatis.binding.BindingException:Type interface com.kuang.dao.UserDao is not knowto the MapperRegistry.

MapperRegistry是什么?

 <!--每一个Mapper.xml都需要再Mybatis核心配置文件中注册!-->
? ? ?<mappers>
? ? ? ? ?<mapper resource="com/bo/dao/UserMapper.xml"/>
? ? ?</mappers> 

2.java: java.lang.ExceptionInInitializerError

?

  • junit测试

? @Test
? ? ?public void test1(){
? ? ? ? ?//1.获得sqlSession对象
? ? ? ? ?SqlSession sqlSession = MybatisUtils.getsqlSession();
??
? ? ? ? ?//2.执行sql  方式一getMapper
? ? ? ? ?UserDao userDao = sqlSession.getMapper(UserDao.class);
? ? ? ? ?List<User> userList = userDao.getUserList();
??
? ? ? ? ?for (User user : userList) {
? ? ? ? ? ? ?System.out.println(user);
? ? ? ?  }
??
? ? ? ? ?//关闭sqlSession
? ? ? ? ?sqlSession.close();
? ?  }

可能会遇到的问题

1.配置文件没有注册

2.绑定接口错误

3.方法名不对

4.返回类型不对

5.maven导出资源问题

6.lombok版本太低 com.sun.tools.javac.code.TypeTags

1.maven

2.编写工具类 被动需要配置文件

3.写配置文件

4.写实体类

5.写接口

6.写mapper.xml

7.写测试

3、CRUD

1、namespace

namespace的包名要和mapper接口的包名一致

2、select

选择,查询语句

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

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

  • parameterType:参数类型!

1.编写接口

? 
//查询全部用户
? ? ?List<User> getUserList();

2.编写对应的mapper中的sql语句

? <!--select查询语句-->
? ? ?<!--id相当于原来重写方法的名字-->
? ? ?<select id="getUserList" resultType="com.bo.pojo.User">
? ? ? ?  select * from mybatis.user
? ? ?</select>
??
? ? ?<select id="getUserById" parameterType="int" resultType="com.bo.pojo.User">
? ? ? ?  select * from mybatis.user where id = #{id}
? ? ?</select>

3.测试

?
 @Test
? ? ?public void test1(){
? ? ? ? ?//1.获得sqlSession对象
? ? ? ? ?SqlSession sqlSession = MybatisUtils.getSqlSession();
??
? ? ? ? ?//2.执行sql  方式一getMapper
? ? ? ? ?UserMapper userDao = sqlSession.getMapper(UserMapper.class);
? ? ? ? ?List<User> userList = userDao.getUserList();
? ? ? ? ?//方式二
?// ? ? ?  List<User> userList = sqlSession.selectList("com.bo.dao.UserDao.getUserList");
??
? ? ? ? ?for (User user : userList) {
? ? ? ? ? ? ?System.out.println(user);
? ? ? ?  }
??
? ? ? ? ?//关闭sqlSession
? ? ? ? ?sqlSession.close();
? ?  }

3、insert

? <!--对象中的属性可以直接取出来-->
? ? ?<insert id="addUser" parameterType="com.bo.pojo.User">
? ? ? ?  insert into mybatis.users(id,name,pwd) value (#{id},#{name},#{pwd});
? ? ?</insert>

4、update

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

5、delete

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

注意点:

  • 增删改需要提交事务! sqlSession.commit();

 @Test
? ? ?public void test2(){
? ? ? ? ?SqlSession sqlSession = MybatisUtils.getSqlSession();
? ? ? ? ?//获得接口
? ? ? ? ?UserMapper mapper = sqlSession.getMapper(UserMapper.class);
? ? ? ? ?User user = mapper.getUserById(1);
? ? ? ? ?System.out.println(user);
??
? ? ? ? ?sqlSession.close();
? ?  }
? ? ?//增删改需要提交事务
? ? ?@Test
? ? ?public void test3(){
? ? ? ? ?SqlSession sqlSession = MybatisUtils.getSqlSession();
? ? ? ? ?//获得接口
? ? ? ? ?UserMapper mapper = sqlSession.getMapper(UserMapper.class);
? ? ? ? ?int lly = mapper.addUser(new User(7, "龙利", "18"));
? ? ? ? ?if(lly>0){
? ? ? ? ? ? ?System.out.println("插入成功");
? ? ? ?  }
? ? ? ? ?//提交事务
? ? ? ? ?sqlSession.commit();
? ? ? ? ?sqlSession.close();
? ?  }
??
? ? ?@Test
? ? ?public void test4(){
? ? ? ? ?SqlSession sqlSession = MybatisUtils.getSqlSession();
? ? ? ? ?//获得接口
? ? ? ? ?UserMapper mapper = sqlSession.getMapper(UserMapper.class);
? ? ? ? ?mapper.updateUser(new User(7,"绫濑遥","123456"));
? ? ? ? ?//提交事务
? ? ? ? ?sqlSession.commit();
? ? ? ? ?sqlSession.close();
? ?  }
??
? ? ?@Test
? ? ?public void test5(){
? ? ? ? ?SqlSession sqlSession = MybatisUtils.getSqlSession();
? ? ? ? ?//获得接口
? ? ? ? ?UserMapper mapper = sqlSession.getMapper(UserMapper.class);
? ? ? ? ?mapper.deleteUser(7);
? ? ? ? ?//提交事务
? ? ? ? ?sqlSession.commit();
? ? ? ? ?sqlSession.close();
? ?  }

6、错误分析

  • 标签不要匹配错

  • resource 绑定mapper需要使用路径

    <mapper resource="com/bo/dao/UserMapper.xml"/>

  • namespace 匹配包,使用.

    ?<!--namespace=绑定一个对应的Dao/Mapper接口-->
    ?<mapper namespace="com.bo.dao.UserMapper">

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

  • NullPointerException,没有注册到资源

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

  • maven资源导出失败 ------》在pom.xml中写依赖

7、万能Map

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

? ? 
?//万能Map
? ? ?int addUser2(Map<String,Object> map);
?<!--对象中的属性可以直接取出来  传递map的key-->
? ? ?<insert id="addUser" parameterType="map">
? ? ? ?  insert into mybatis.user (id,name,pwd) values (#{userid},#{userName},#{passWord});
? ? ?</insert>
?@Test
?// ?  public void addUser2(){
?// ? ? ?  SqlSession sqlSession = MybatisUtils.getSqlSession();
?// ? ? ?  //获得接口
?// ? ? ?  UserMapper mapper = sqlSession.getMapper(UserMapper.class);
?//
?// ? ? ?  Map<String, Object> map = new HashMap<>();
?// ? ? ?  map.put("userid",8);
?// ? ? ?  map.put("userName","安琪儿");
?// ? ? ?  map.put("passWord","123456");
? ? ? ?  map.put("passWord","191919");
?// ? ? ?  mapper.addUser2(map);
?// ? ? ?  sqlSession.commit();
?// ? ? ?  sqlSession.close();
?// ?  }

Map传递参数,直接在sql中取出key即可! parameterType="map"

对象传递参数,直接在sql中取对象的属性即可! parameterType="com.bo.pojo.User

只有一个基本类型的参数下,可以直接在sql中取到!parameterType="int"

多个参数用map或者注解

4、解决属性名和字段名不一致的问题

1、问题

新建一个项目,拷贝之前的,测试实体类字段不一致的情况

修改实体类的对象

?import lombok.AllArgsConstructor;
?import lombok.Data;
?import lombok.NoArgsConstructor;
?import org.apache.ibatis.type.Alias;
??
?@Data
?@AllArgsConstructor
?@NoArgsConstructor
?public class User {
? ? ?private int id;
? ? ?private String name;
? ? ?private String password;
??
?}

测试结果出现异常


selete*form mybatis.user where id = #{id}
?//类型处理器
?selete id,name,pwd form mybatis.user where id = #{id}

解决方案

  • 起别名

    <select id="getUserById" parameterType="int" resultType="com.bo.pojo.User">
    ? ? ? ?  select id,name,pwd as password from mybatis.user where id = #{id};
    ?</select>

但我们一般不会使用改SQL语句来解决

  • 结果集映射

  • 设置全局配置,将_下划线自动映射为驼峰(在mybatis-config.xml中进行配置)

2、resultMap 结果集映射

结果集映射

想办法让上面的改为下面的

?
id  name pwd
?id  name  password
?
<!--结果集映射-->
? ? ?<resultMap id="UserMap" type="User">
? ? ? ? ?<!--column数据库中的字段,property实体类中的属性-->
? ? ? ? ?<result column="id" property="id"/>
? ? ? ? ?<result column="name" property="name"/>
? ? ? ? ?<result column="pwd" property="password"/>
? ? ?</resultMap>
? ? ?<select id="getUserById" parameterType="int" resultMap="UserMap">
? ? ? ?  select * from mybatis.user where id = #{id};
? ? ?</select>

  • resultMap元素是MyBatis中最重要最强大的元素

  • ResultMap的设计思想是,对于简单的语句根本不需要配置显式的结果映射,而对于复杂一点的语句只需要描述它们的关系就行了。

  • ResultMap 最优秀的地方在于,虽然你已经对它相当了解了,但是根本就不需要显式地用到他们.

5、日志

5.1、日志工厂

如果一个数据库操作出现了异常,我们需要排错,日志就是最好的助手!

曾经:sout debug

现在:日志工厂

  • SLF4J

  • LOG4J 【掌握】

  • LOG4J2

  • JDK_LOGGING

  • COMMONS_LOGGING

  • STDOUT_LOGGING 【掌握】

  • NO_LOGGING

在mybatis中具体使用哪个日志实现,在设置中设定!

STDOUT_LOGGING 标准日志输出

在mybatis核心配置文件中配置日志

? <settings>
? ? ? ? ?<setting name="logImpl" value="STDOUT_LOGGING"/>
? ? ?</settings>

5.2、LOG4J

什么是LOG4J?

  • log4j是Apache的一个开源项目,通过使用Log4j,我们可以控制日志信息输送的目的地是控制台、文件、GUI组件

  • 我们也可以控制每一条日志的输出格式

  • 通过定义每一条日志信息的级别,我们能够更加细致地控制日志的生成过程。

  • 通过一个配置文件来更活地进行配置,而不需要修改应用的代码。

1.先导入log4j的包

?<dependency>
? ? ?<groupId>log4j</groupId>
? ? ?<artifactId>log4j</artifactId>
? ? ?<version>1.2.17</version>
?</dependency>

2.log4j.properties

?#将等级为DEBUG的日志信息输出到console和file两个目的地
?log4j.rootLogger=DEBUG,console,file
??
?#控制台输出的相关设置
?log4j.appender.console=org.apache.log4j.ConsoleAppender
?log4j.appender.console.Target=System.out
?log4j.appender.console.Threshold=DEBUG
?log4j.appender.console.layout=org.apache.log4j.PatternLayout
?log4j.appender.console.layout.ConversionPattern=[%c]-%m%n
??
?#文件输出的相关配置
?log4j.appender.file=org.apache.log4j.RollingFileAppender
?log4j.appender.file.File=./log/kuang.log
?log4j.appender.file.MaxFileSize=10mb
?log4j.appender.file.Threshold=DEBUG
?log4j.appender.file.layout=org.apache.log4j.PatternLayout
?log4j.appender.file.layout.ConversionPattern=[%p][%d{yy-MM-dd}[%c]%m%n
??
?#日志输出级别
?log4j.logger.org.mybatis=DEBUG
?log4j.logger.java.sql=DEBUG
?log4j.logger.java.sql.Statement=DEBUG
?log4j.logger.java.sql.ResultSet=DEBUG
?log4j.logger.java.sql.PreparedStatement=DEBUG

3.配置log4j为日志的实现

?<settings>
? ? ?<setting name="logImpl" value="LOG4J"/>
?</settings>

6、分页

思考:为什么要分页?

  • 减少数据的处理量

6.1、使用limit分页
?语法:SELECT * FORM user limit startIndex,pageSize;
?SELECT * from user limit 3; ?#[0,3]
?SELECT * from user limit 2,2;

使用mybatis实现分页,核心SQL

  1. 接口

    ?
    //分页
    ? ? ?List<User> getUserByIdLimit(Map<String,Integer> map);

  2. Mapper.xml

    ?<!--分页--> ? ?<!--结果集映射  resultMap-->
    ? ? ?<select id="getUserByIdLimit" parameterType="map" resultMap="UserMap">
    ? ? ? ?  select * from mybatis.user limit #{startIndex},#{pageSize}
    ? ? ?</select>

  3. 测试

     @Test
    ? ? ?public void getUserByIdLimit(){
    ? ? ? ? ?SqlSession sqlSession = MybatisUtils.getSqlSession();
    ? ? ? ? ?UserMapper mapper = sqlSession.getMapper(UserMapper.class);
    ? ? ? ? ?HashMap<String, Integer> map = new HashMap<>();
    ? ? ? ? ?map.put("startIndex",1);
    ? ? ? ? ?map.put("pageSize",2);
    ? ? ? ? ?List<User> userList = mapper.getUserByIdLimit(map);
    ? ? ? ? ?for (User user : userList) {
    ? ? ? ? ? ? ?System.out.println(user);
    ? ? ? ?  }
    ??
    ? ? ? ? ?sqlSession.close();
    ? ?  }

6.2、RowBounds分页

不再使用sql进行分页

  1. 接口

    ?//分页2
    ? ? ?List<User> getUserByIdRowBounds(); 

  2. mapper.xml

    ?<!--分页2-->
    ? ? ?<select id="getUserByIdRowBounds" ?resultMap="UserMap">
    ? ? ? ?  select * from mybatis.user
    ? ? ?</select>

  3. 测试

    ?@Test
    ? ? ?public void getUserByIdRowBounds(){
    ? ? ? ? ?SqlSession sqlSession = MybatisUtils.getSqlSession();
    ? ? ? ? ?RowBounds rowBounds = new RowBounds(1, 2);
    ? ? ? ? ?List<User> userList = sqlSession.selectList("com.bo.dao.UserMapper.getUserByIdRowBounds",null,rowBounds);
    ? ? ? ? ?for (User user : userList) {
    ? ? ? ? ? ? ?System.out.println(user);
    ? ? ? ?  }
    ? ? ? ? ?sqlSession.close();
    ? ?  }

7、使用注解开发

7.1、面向接口编程

根本原因:解耦

三个面向区别

  • 面向对象是指,我们考虑问题时,以对象为单位,考虑它的属性及方法.

  • 面向过程是指,我们考虑问题时,以一个具体的流程(事务过程)为单位,考虑它的实现.

  • 接口设计与非接口设计是针对复用技术而言的,与面向对象(过程)不是一个问题.更多的体现就是对系统整体的架构

7.2、使用注解开发

干掉userMapper.xml

使用注解来映射简单语句会使代码显得更加简洁,然而对于稍微复杂一点的语句,Java注解就力不从心了,并且会显得更加混乱。 因此,如果你需要完成很复杂的事情,那么最好使用XML来 映射语句。

  1. 注解在接口上实现

    ?@Select("select * from user")
    ? ? List<User> getUsers();

  2. 需要在核心配置文件中绑定接口

?<!--绑定接口-->
?<mappers>
? ? ?<mapper class="com.bo.dao.UserMapper"/>
?</mappers>
  1. 测试

    ?@Test
    ?public void test(){
    ? ? ?SqlSession sqlSession = MybatisUtils.getSqlSession();
    ? ? ?//底层主要应用反射
    ? ? ?UserMapper mapper = sqlSession.getMapper(UserMapper.class);
    ? ? ?List<User> users = mapper.getUsers();
    ? ? ?for (User user : users) {
    ? ? ? ? ?System.out.println(user);
    ? ?  }
    ? ? ?sqlSession.close();
    ?}

7.3、CRUD

我们可以在工具类创建的时候自动提交事务

在里面写上true会自动提交事务,不需要写commit

?public static SqlSession getSqlSession(){
? ? ? ? ?//增删改需要提交事务! ? sqlSession.commit();
? ? ? ? ?return sqlSessionFactory.openSession(true);
? ?  }

绑定接口

 
 <!--绑定接口-->
? ? ?<mappers>
? ? ? ? ?<mapper class="com.bo.dao.UserMapper"/>
? ? ?</mappers>
?<mappers>
?<!-- ? ? ?  <mapper resource="com/bo/dao/User(/*)Mapper.xml"/>-->
? ? ? ?  <!--<mapper class="com/bo/dao/UserMapper"/>-->
? ? ? ?  <package name="com.bo.dao"/>
? ?  </mappers>

编写接口,增加注解

?public interface UserMapper {
? ? ?@Select("select * from user")
? ? ?List<User> getUsers();
? ? ?//方法存在多个参数,所有的参数前面必须加上@Param("id")注解
? ? ?//sql语句中的id对象Param("id")中的id
? ? ?@Select("select * from user where id = #{id}")
? ? ?User getUserById(@Param("id") int i);
??
? ? ?@Insert("insert into user(id,name,pwd) values(#{id},#{name},#{pwd})")
? ? ?int addUser(User user);
??
? ? ?@Update("update user set name=#{name},pwd=#{pwd} where id=#{id}")
? ? ?int updateUser(User user);
??
? ? ?@Delete("delete from user where id = #{uid}")
? ? ?int deleteUser(@Param("uid") int id);
 

测试

?import com.bo.dao.UserMapper;
?import com.bo.pojo.User;
?import com.bo.utils.MybatisUtils;
?import org.apache.ibatis.session.SqlSession;
?import org.junit.Test;
??
?import java.util.List;
??
?public class UserMapperTest {
? ? ?@Test
? ? ?public void test(){
? ? ? ? ?SqlSession sqlSession = MybatisUtils.getSqlSession();
? ? ? ? ?//底层主要应用反射
? ? ? ? ?UserMapper mapper = sqlSession.getMapper(UserMapper.class);
? ? ? ? ?List<User> users = mapper.getUsers();
? ? ? ? ?for (User user : users) {
? ? ? ? ? ? ?System.out.println(user);
? ? ? ?  }
? ? ? ? ?sqlSession.close();
? ?  }
??
? ? ?@Test
? ? ?public void testbyid(){
? ? ? ? ?SqlSession sqlSession = MybatisUtils.getSqlSession();
? ? ? ? ?//底层主要应用反射
? ? ? ? ?UserMapper mapper = sqlSession.getMapper(UserMapper.class);
?// ? ? ?  List<User> users = mapper.getUsers();
?// ? ? ?  for (User user : users) {
?// ? ? ? ? ?  System.out.println(user);
?// ? ? ?  }
? ? ? ? ?User userById = mapper.getUserById(1);
? ? ? ? ?System.out.println(userById);
? ? ? ? ?sqlSession.close();
? ?  }
??
? ? ?@Test
? ? ?public void addUser(){
? ? ? ? ?SqlSession sqlSession = MybatisUtils.getSqlSession();
? ? ? ? ?UserMapper mapper = sqlSession.getMapper(UserMapper.class);
??
? ? ? ? ?mapper.addUser(new User(9,"xxx","181818"));
? ? ? ? ?sqlSession.close();
? ?  }
??
? ? ?@Test
? ? ?public void updateUser(){
? ? ? ? ?SqlSession sqlSession = MybatisUtils.getSqlSession();
? ? ? ? ?UserMapper mapper = sqlSession.getMapper(UserMapper.class);
??
? ? ? ? ?mapper.updateUser(new User(3,"xxx","181818"));
? ? ? ? ?sqlSession.close();
? ?  }
??
? ? ?@Test
? ? ?public void deleteUser(){
? ? ? ? ?SqlSession sqlSession = MybatisUtils.getSqlSession();
? ? ? ? ?UserMapper mapper = sqlSession.getMapper(UserMapper.class);
??
? ? ? ? ?mapper.deleteUser(5);
? ? ? ? ?sqlSession.close();
? ?  }
??
?}
??

注意,我们必须要把接口注册绑定到我们的核心配置文件中!

7.4、关于@Param注解

  • 基本类型的参数或者String类型,需要加上

  • 引用类型不需要加

  • 如果只有一个基本类型的话,可以忽略,但是建议都加上

  • 我们在SQL中引用的就是我们这里的@Param("uid")中所设定的(uid)属性名

7.5、#{} 与${} 区别?

#{}可以有效防止sql注入

8、Lombok

使用步骤:

  • 下载插件

  • 导入依赖

<!--lombok-->
? ? ? ? ?<dependency>
? ? ? ? ? ? ?<groupId>org.projectlombok</groupId>
? ? ? ? ? ? ?<artifactId>lombok</artifactId>
? ? ? ? ? ? ?<version>1.18.16</version>
? ? ? ? ? ? ?<scope>provided</scope>
? ? ? ? ?</dependency>

@Data: 无参构造 有参构造 get set toString hashcode equals

@AllArgsConstructor

@NoArgsConstructor

@ToString

@Getter

9、动态SQL

什么是动态SQL:动态SQL就是指根据不同的条件生成不同的SQL语句

动态SQL就是在拼接SQL语句,我们只要保证SQL的正确性,按照SQL的格式,去排列组合就可以了!

所谓的动态SQL,本质还是SQL语句,只是我们可以在SQL层面,去执行一个逻辑代码

搭建环境

  1. 导包

  2. 编写配置文件

  3. 编写实体类

    ?@Data
    ?public class Blog {
    ? ? ?private String id;
    ? ? ?private String title;
    ? ? ?private String author;
    ? ? ?private Date create_time; ?//属性名和字段名不一致
    ? ? ?private int views;
    ?}

  4. 编写实体类对应Mapper接口和Mapper.XML文件

IF

? <select id="queryBlogIF" parameterType="map" resultType="blog">
? ? ? ?  select * from blog where 1=1
? ? ? ? ?<if test="title != null">
? ? ? ? ? ?  and title = #{title}
? ? ? ? ?</if>
? ? ? ? ?<if test="author !=null">
? ? ? ? ? ?  and author = #{author}
? ? ? ? ?</if>
? ? ?</select>

测试

??
? ? ?
//查询博客
? ? ?List<Blog> queryBlogIF(Map map);
??
??
?@Test
? ? ?public void queryBlogIF(){
? ? ? ? ?SqlSession sqlSession = MybatisUtils.getSqlSession();
? ? ? ? ?BlogMapper mapper = sqlSession.getMapper(BlogMapper.class);
? ? ? ? ?HashMap map = new HashMap();
? ? ? ? // map.put("title","Java");
? ? ? ? ?map.put("author","狂神说");
? ? ? ? ?List<Blog> blogs = mapper.queryBlogIF(map);
? ? ? ? ?for (Blog blog : blogs) {
? ? ? ? ? ? ?System.out.println(blog);
? ? ? ?  }
??
? ? ? ? ?sqlSession.close();
? ?  }

choose(when,otherwise)

?<select id="queryBlogChoose" parameterType="map" resultType="blog">
? ?  select * from blog
? ? ?<where>
? ? ? ? ?<choose>
? ? ? ? ? ? ?<when test="title!=null">
? ? ? ? ? ? ? ?  title=#{title}
? ? ? ? ? ? ?</when>
? ? ? ? ? ? ?<when test="author!=null">
? ? ? ? ? ? ? ?  and author = #{author}
? ? ? ? ? ? ?</when>
? ? ? ? ? ? ?<otherwise>
? ? ? ? ? ? ? ?  and views = #{views}
? ? ? ? ? ? ?</otherwise>
? ? ? ? ?</choose>
? ? ?</where>
?</select>

trim(where,set)

where,如果为第一个元素,则自动去除and,如果为第二个,则自动加上and,

通俗的来说,就是保证你的SQL语句能够正常运行

假设我们什么都不传,where语句会自动没有了

?<select id="queryBlogIF" parameterType="map" resultType="blog">
? ?  select * from blog
? ? ?<where>
? ? ? ? ?<if test="title != null">
? ? ? ? ? ?  and title = #{title}
? ? ? ? ?</if>
? ? ? ? ?<if test="author !=null">
? ? ? ? ? ?  and author = #{author}
? ? ? ? ?</if>
? ? ?</where>
??
?</select>


?<update id="updateBlog" parameterType="map">
? ? ? ?  update blog
? ? ? ? ?<set>
? ? ? ? ? ? ?<if test="title!=null">
? ? ? ? ? ? ? ?  title = #{title},
? ? ? ? ? ? ?</if>
? ? ? ? ? ? ?<if test="author!=null">
? ? ? ? ? ? ? ?  author = #{author}
? ? ? ? ? ? ?</if>
? ? ? ? ?</set>
? ? ? ?  where id = #{id}
? ? ?</update>

set会自动去逗号

所谓的动态SQL,本质还是SQL语句,只是我们可以在SQL层面,去执行一个逻辑代码

Foreach

 <!--select * from blog where 1=1 and(id=1 or id=2 or id=3)
? ? ? ? ?我们现在传递一个map,这个map中可以存在一个集合!
? ? ?-->
? ? ?<select id="queryBlogForeach" parameterType="map" resultType="blog">
? ? ? ?  select * from blog
? ? ? ? ?<where>
? ? ? ? ? ? ?<foreach collection="ids" item="id" open="and (" close=")" separator="or">
? ? ? ? ? ? ? ?  id=#{id}
? ? ? ? ? ? ?</foreach>
? ? ? ? ?</where>
? ? ?</select>

SQL片段

有的时候,我们可能会将一些功能的部分抽取出来,方便复用!

  1. 使用SQL标签抽取公共的部分

    <sql id="if-title-author">
    ? ? ? ? ?<if test="title != null">
    ? ? ? ? ? ?  and title = #{title}
    ? ? ? ? ?</if>
    ? ? ? ? ?<if test="author !=null">
    ? ? ? ? ? ?  and author = #{author}
    ? ? ? ? ?</if>
    ? ? ?</sql>

  2. 在需要使用的地方使用Include标签引用即可

    ?<select id="queryBlogIF" parameterType="map" resultType="blog">
    ? ? ? ?  select * from blog
    ? ? ? ? ?<where>
    ? ? ? ? ? ? ?<include refid="if-title-author"></include>
    ? ? ? ? ?</where>
    ??
    ? ? ?</select>

注意事项:

  • 最好基于单表来定义SQL片段!

  • 不要存在where标签

建议:

  • 先在Mysql中写出完整的SQL,再对应的去修改成为我们的动态SQL实现通用即可!

10、缓存

10.1、简介

?查询 :连接数据库,耗资源
?    一次查询的结果,给他暂存在一个可以直接取到的地方!-->内存:缓存
?    
?我们再次查询相同数据的时候,直接走缓存,就不用走数据库了
??

  1. 什么是缓存

    • 存在内存中的临时数据。

    • 将用户经常查询的数据放在缓存(内存)中,用户去查询数据就不用从磁盘上(关系型数据库数据文件)查询,从缓存中查询,从而提高查询效率,解决了高并发系统的性能问题。

  2. 为什么使用缓存

    • 减少和数据库的交互次数,减少系统开销,提高系统效率。

  3. 什么样的数据能使用缓存?

    • 经常查询并且不经常改变的数据。【可以使用缓存】

10.2、Mybatis缓存

  • MyBatis包含一个非常强大的查询缓存特性,它可以非常方便地定制和配置缓存。缓存可以极大的提升查询效率。

  • MyBatis系统中默认定义了两级缓存:一级缓存和二级缓存

    • 默认情况下,只有一级缓存开启。(SqlSession级别的缓存,也称为本地缓存)

    • 二级缓存需要手动开启和配置,他是基于namespace级别的缓存。

    • 为了提高扩展性,MyBatis定义了缓存接口Cache。我们可以通过实现Cache接口来自定义二级缓存

10.3、一级缓存

  • —级缓存也叫本地缓存:

    • 与数据库同一次会话期间查询到的数据会放在本地缓存中。

    • 以后如果需要获取相同的数据,直接从缓存中拿,没必须再去查询数据库;

测试步骤

  1. 开启日志

  2. 测试在一个Sesion中查询两次相同记录

     ?<select id="queryUserById" parameterType="_int" resultType="user">
    ? ? ? ? ? ?  select * from user where id=#{id}
    ? ? ? ? ?</select>
    ? 
    @Test
    ? ? ?public void queryUserById(){
    ? ? ? ? ?SqlSession sqlSession = MybatisUtils.getSqlSession();
    ? ? ? ? ?UserMapper mapper = sqlSession.getMapper(UserMapper.class);
    ??
    ? ? ? ? ?List<User> user =mapper.queryUserById(5);
    ? ? ? ? ?System.out.println(user);
    ??
    ? ? ? ? ?System.out.println("=============");
    ??
    ? ? ? ? ?List<User> user2 =mapper.queryUserById(5);
    ? ? ? ? ?System.out.println(user2);
    ??
    ? ? ? ? ?System.out.println(user==user2);
    ? ? ? ? ?sqlSession.close();
    ? ?  }

  3. 查看日志输出

????????

缓存失效的情况

  1. 查询不同的东西

  2. 增删改操作,可能会改变原来的数据,所有必定会刷新缓存!

    ?@Test
    ? ? ?public void queryUserById(){
    ? ? ? ? ?SqlSession sqlSession = MybatisUtils.getSqlSession();
    ? ? ? ? ?UserMapper mapper = sqlSession.getMapper(UserMapper.class);
    ??
    ? ? ? ? ?List<User> user =mapper.queryUserById(5);
    ? ? ? ? ?System.out.println(user);
    ??
    ? ? ? ? ?mapper.updateUser(new User(2,"aaa","18784"));
    ? ? ? ? ?System.out.println("=============");
    ??
    ? ? ? ? ?List<User> user2 =mapper.queryUserById(5);
    ? ? ? ? ?System.out.println(user2);
    ??
    ? ? ? ? ?System.out.println(user==user2);
    ? ? ? ? ?sqlSession.close();
    ? ?  }

  3. 查询不同的Mapper.xml

  4. 手动清理缓存

    sqlSession.clearCache();//手动清理缓存

小结:一级缓存默认是开启的,只在一次SqlSession中有效,也就是拿到连接到关闭连接这个区间段!

一级缓存相当于一个map

10.4.二级缓存

  • 二级缓存也叫全局缓存,一级缓存作用域太低了,所以诞生了二级缓存

  • 基于namespace级别的缓存,一个名称空间,对应一个二级缓存;

  • 工作机制

    • 一个会话查询一条数据,这个数据就会被放在当前会话的一级缓存中;

    • 如果当前会话关闭了,这个会话对应的一级缓存就没了;但是我们想要的是,会话关闭了,一级缓存中的数据被保存到二级缓存中;

    • 新的会话查询信息,就可以从二级缓存中获取内容;

    • 不同的mapper查出的数据会放在自己对应的缓存(map)中;

步骤

  1. 开启全局缓存(默认为开启)

    ?<!--显示的开启全局缓存-->
    ? ? ? ? ?<setting name="cacheEnabled" value="true"/>

  2. 在要使用二级缓存的Mapper中开启

    ?
     <!--在当前Mapper.xml中使用二级缓存-->
    ? ? ?<cache/>

    也可以自定义参数

    ? <cacheeviction="FIFO"
    ? ? ? ? ? ? flushInterval="60000"
    ? ? ? ? ? ? size="512"
    ? ? ? ? ? ? readOnly="true"/>

  3. 测试

    开启了二级缓存,存入缓存需要序列化

    • 问题:我们需要将实体类序列化!否则就会报错!序列化implements Serializable

      ? Caused by: java.io.NotSerializableException: com.bo.pojo.User
      ?public class User implements Serializable {
      ? ? ?private int id;
      ? ? ?private String name;
      ? ? ?private String pwd;
      ? }

    ?@Test
    ? ? ?public void queryUserById2(){
    ? ? ? ? ?SqlSession sqlSession = MybatisUtils.getSqlSession();
    ? ? ? ? ?SqlSession sqlSession2 = MybatisUtils.getSqlSession();
    ??
    ? ? ? ? ?UserMapper mapper = sqlSession.getMapper(UserMapper.class);
    ? ? ? ? ?UserMapper mapper2 = sqlSession2.getMapper(UserMapper.class);
    ??
    ? ? ? ? ?List<User> user =mapper.queryUserById(5);
    ? ? ? ? ?System.out.println(user);
    ? ? ? ? ?sqlSession.close();
    ??
    ? ? ? ? ?List<User> user2 =mapper2.queryUserById(5);
    ? ? ? ? ?System.out.println(user2);
    ? ? ? ? ?sqlSession2.close();
    ? ? ? ? ?System.out.println(user==user2);
    ? ?  }
    ??

?

问题:为什么是false

最后会为false是圆为一级缓存内容存到了二级缓存中所内存地址变化。对比为false

序列化之后取出来的就不是同一个对象了

小结:

  • 只要开启了二级缓存,在同一个Mapper下就有效

  • 所有的数据都会先放在一级缓存中;

  • 只有当会话提交,或者关闭的时候,才会提交到二级缓冲中!

useCache默认为true,表示会将本条语句的结果进行二级缓存

?<!--useCache默认为true,表示会将本条语句的结果进行二级缓存。-->
?<select id="queryUserById" parameterType="_int" resultType="user" useCache="false">
? ?  select * from user where id=#{id}
?</select> 

10.5、自定义缓存-ehcache

EhCache是一个纯Java的进程内缓存框架,具有快速、精干等特点,是Hibernate中默认的CacheProvider。

Ehcache是一种广泛使用的开源Java分布式缓存。主要面向通用缓存

要在程序中使用ehcache,先要导包!

ehcache.xml

?<dependency>
? ? ?<groupId>org.mybatis.caches</groupId>
? ? ?<artifactId>mybatis-ehcache</artifactId>
? ? ?<version>1.1.0</version>
?</dependency>

在mapper中指定使用我们的ehcache缓存实现!

? ?<cache type="org.mybatis.caches.ehcache.EhcacheCache"/>

配置:ehcache

?
<?xml version="1.0" encoding="UTF-8"?>
?<ehcache xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
? ? ? ? ? xsi:noNamespaceSchemaLocation="http://ehcache.org/ehcache.xsd"
? ? ? ? ? updateCheck="false">
??
? ? ?<diskStore path="./tmpdir/Tmp_EhCache"/>
??
? ? ?<defaultCache
? ? ? ? ? ? ?eternal="false"
? ? ? ? ? ? ?maxElementsInMemory="10000"
? ? ? ? ? ? ?overflowToDisk="false"
? ? ? ? ? ? ?diskPersistent="false"
? ? ? ? ? ? ?timeToIdleSeconds="1800"
? ? ? ? ? ? ?timeToLiveSeconds="259200"
? ? ? ? ? ? ?memoryStoreEvictionPolicy="LRU"/>
??
? ? ?<cache
? ? ? ? ? ? ?name="cloud_user"
? ? ? ? ? ? ?eternal="false"
? ? ? ? ? ? ?maxElementsInMemory="5000"
? ? ? ? ? ? ?overflowToDisk="false"
? ? ? ? ? ? ?diskPersistent="false"
? ? ? ? ? ? ?timeToIdleSeconds="1800"
? ? ? ? ? ? ?timeToLiveSeconds="1800"
? ? ? ? ? ? ?memoryStoreEvictionPolicy="LRU"/>
?</ehcache>

自定义缓存

?public class MyCache implements Cache {
? ? ?重写的方法
}

文章来源:https://blog.csdn.net/m0_59740242/article/details/134978876
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。