mybatis基础

发布时间:2023年12月20日

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

mybatis的maven依赖

<!-- https://mvnrepository.com/artifact/org.mybatis/mybatis -->
<dependency>
    <groupId>org.mybatis</groupId>
    <artifactId>mybatis</artifactId>
    <version>3.5.2</version>
</dependency>

持久化

数据持久化:

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

为什么需要持久化:有些对象不能丢掉;内存太贵;

持久层

Dao层、 Service层、 Controller层

Service层做业务操作,业务层调Dao层,controller接收用户请求,并把请求转化给业务去做,

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

为什么需要Mybatis?

帮助程序员将数据存入到数据库中;

方便,简化传统的复杂的JDBC代码,实现自动化;

第一个mybatis程序

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

step1:搭建数据库

create database `mybatis`;

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, '李四', '123890');

step2:

新建项目:

  1. 新建一个普通的maven项目(setting中查看maven版本和仓库地址)
  2. 删除src目录(作为父工程)
  3. 导入maven依赖
<dependencies>
    <!--mysql驱动-->
    <dependency>
        <groupId>mysql</groupId>
        <artifactId>mysql-connector-java</artifactId>
        <version>8.0.31</version>
    </dependency>
    <!--mybatis-->
    <dependency>
        <groupId>org.mybatis</groupId>
        <artifactId>mybatis</artifactId>
        <version>3.5.2</version>
    </dependency>
    <!--Junit-->
    <dependency>
        <groupId>junit</groupId>
        <artifactId>junit</artifactId>
        <version>4.12</version>
    </dependency>
</dependencies>

父文件与子文件的pom文件中都加入:

<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>

step3:

创建模块:

编写mybatis的核心配置文件

<?xml version="1.0" encoding="GBK" ?>
<!DOCTYPE configuration
        PUBLIC "-//mybatis.org//DTD Config 3.0//EN"
        "https://mybatis.org/dtd/mybatis-3-config.dtd">
<configuration>
    <environments default="development">
        <environment id="development">
            <transactionManager type="JDBC"/>
            <dataSource type="POOLED">
                <property name="driver" value="com.mysql.cj.jdbc.Driver"/>
                <property name="url" value="jdbc:mysql://localhost:3306/mybatis?useSSL=true&amp;useUnicode=true&amp;characterEncoding=UTF-8"/>
                <property name="username" value="root"/>
                <property name="password" value="mysq123"/>
            </dataSource>
        </environment>
    </environments>
    <!--    每一个Mapper.xml都需要在Mybatis核心配置文件中注册-->
    <mappers>
        <mapper resource="com/wlp/dao/UserMapper.xml"/>
    </mappers>
</configuration>

编写mybatis工具类:

package com.xxx.utils;

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.InputStream;

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 (Exception e) {
            e.printStackTrace();
        }
    }
//    通过sqlSessionFactory获得SqlSession实例。
//    SqlSession完全包含了面向数据库执行SQL命令所需的所有方法。
    public static SqlSession getSqlSession(){
        return sqlSessionFactory.openSession();
    }
}

dao接口:

import com.wlp.pojo.User;

import java.util.List;

public interface UserDao  {
    List<User> getUserList();
}

接口实现类 由原来的UserDaoImpl转换为一个mapper配置文件

<?xml version="1.0" encoding="GBK" ?>
<!DOCTYPE mapper
        PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
        "https://mybatis.org/dtd/mybatis-3-mapper.dtd">
<!--namespace绑定一个对应的mapper接口-->
<mapper namespace="com.wlp.dao.UserDao">
    <select id="getUserList" resultType="com.wlp.pojo.User">
        select * from mybatis.user
    </select>
</mapper>

测试:

注意

核心配置文件中注册mappers

Junit测试

import com.wlp.pojo.User;
import com.wlp.utils.mybatisUtils;
import org.apache.ibatis.session.SqlSession;
import org.junit.Test;

import java.util.List;

public class UserDaoTest {
    @Test
    public void test(){
//        第一步:获得sqlSession对象
        SqlSession sqlSession = mybatisUtils.getSqlSession();
//        执行sql
//        方式一:getMapper
        UserDao userDao = sqlSession.getMapper(UserDao.class);
        List<User> userList = userDao.getUserList();

        for (User user : userList) {
            System.out.println(user);
        }
//        方式二:
        List<User> userList1 = sqlSession.selectList("com.wlp.dao.UserDao.getUserList");
        for (User user : userList1) {
            System.out.println(user);
        }


//        关闭sqlSession
        sqlSession.close();
    }
}

mybatis三个核心接口:(笔试)

SqlSessionFactoryBuilder

这个类可以被实例化、使用和丢弃,一旦创建了 SqlSessionFactory,就不再需要它了。 因此 SqlSessionFactoryBuilder 实例的最佳作用域是方法作用域(也就是局部方法变量)。 你可以重用 SqlSessionFactoryBuilder 来创建多个 SqlSessionFactory 实例,但最好还是不要一直保留着它,以保证所有的 XML 解析资源可以被释放给更重要的事情。

SqlSessionFactory

SqlSessionFactory 一旦被创建就应该在应用的运行期间一直存在,没有任何理由丢弃它或重新创建另一个实例。 使用 SqlSessionFactory 的最佳实践是在应用运行期间不要重复创建多次,多次重建 SqlSessionFactory 被视为一种代码“坏习惯”。因此 SqlSessionFactory 的最佳作用域是应用作用域。 有很多方法可以做到,最简单的就是使用单例模式或者静态单例模式。

SqlSession

每个线程都应该有它自己的 SqlSession 实例。SqlSession 的实例不是线程安全的,因此是不能被共享的,所以它的最佳的作用域是请求或方法作用域。 绝对不能将 SqlSession 实例的引用放在一个类的静态域,甚至一个类的实例变量也不行。 也绝不能将 SqlSession 实例的引用放在任何类型的托管作用域中,比如 Servlet 框架中的 HttpSession。 如果你现在正在使用一种 Web 框架,考虑将 SqlSession 放在一个和 HTTP 请求相似的作用域中。 换句话说,每次收到 HTTP 请求,就可以打开一个 SqlSession,返回一个响应后,就关闭它。 这个关闭操作很重要,为了确保每次都能执行关闭操作,你应该把这个关闭操作放到 finally 块中。 下面的示例就是一个确保 SqlSession 关闭的标准模式:

try (SqlSession session = sqlSessionFactory.openSession()) {
  // 你的应用逻辑代码
}

在所有代码中都遵循这种使用模式,可以保证所有数据库资源都能被正确地关闭。

3. CRUD

3.1 namespace

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

3.2 select、insert、update、delete

选择,查询语句

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

resultType:sql语句执行的返回值;

parameterType:参数类型;

1. 编写接口

//    查询全部用户
    List<User> getUserList();
//    根据ID查询用户
    User getUserById(int id);
//    增添用户
    int addUser(User user);
//    删除
    int deleteUser(int id);
//    修改
    int updateUser(User user);

2.?编写对应的mapper中的sql

<!--    查询全部用户-->
    <select id="getUserList" resultType="com.wlp.pojo.User">
        select * from mybatis.user
    </select>
<!--    根据用户ID查询用户-->
    <select id="getUserById" parameterType="int" resultType="com.wlp.pojo.User">
        select * from mybatis.user where id = #{id}
    </select>
<!--    增添用户-->
    <insert id="addUser" parameterType="com.wlp.pojo.User">
        insert into mybatis.user values(#{id},#{name},#{pwd})
    </insert>
<!--    删除用户-->
    <delete id="deleteUser" parameterType="int" >
        delete from mybatis.user where id = #{id}
    </delete>
<!--    修改用户-->
    <update id="updateUser" parameterType="com.wlp.pojo.User">
        update mybatis.user set name = #{name}, pwd = #{pwd} where id = #{id}
    </update>

3. 测试(增删改需要提交事务)

@Test
//查询全部用户
    public void test(){
//        第一步:获得sqlSession对象
        SqlSession sqlSession = mybatisUtils.getSqlSession();
//        执行sql
//        方式一:getMapper
        UserMapper userDao = sqlSession.getMapper(UserMapper.class);
        List<User> userList = userDao.getUserList();

        for (User user : userList) {
            System.out.println(user);
        }
        System.out.println("==============================");


//        方式二:
        List<User> userList1 = sqlSession.selectList("com.wlp.dao.UserMapper.getUserList");
        for (User user : userList1) {
            System.out.println(user);
        }


//        关闭sqlSession
        sqlSession.close();
    }
    @Test
    //根据id查询用户
    public void getUserById(){
        SqlSession sqlSession = mybatisUtils.getSqlSession();
        UserMapper mapper = sqlSession.getMapper(UserMapper.class);
        User userById = mapper.getUserById(2);
        System.out.println(userById);
        sqlSession.close();
    }

    @Test
    //添加用户
    public void addUser(){
        SqlSession sqlSession = mybatisUtils.getSqlSession();
        UserMapper mapper = sqlSession.getMapper(UserMapper.class);
        int user4 = mapper.addUser(new User(4, "哈哈哈", "23edjf"));
        List<User> userlist = mapper.getUserList();
        for (User user : userlist) {
            System.out.println(user);
        }
        sqlSession.commit();
        sqlSession.close();
    }
    @Test
    //删除用户
    public void deleteUser(){
        SqlSession sqlSession = mybatisUtils.getSqlSession();
        UserMapper mapper = sqlSession.getMapper(UserMapper.class);
        int i = mapper.deleteUser(3);
        List<User> userList3 = mapper.getUserList();
        for (User user : userList3) {
            System.out.println(user);
        }
        sqlSession.commit();
        sqlSession.close();
    }
    @Test
    //修改用户
    public void updateUser(){
        SqlSession sqlSession = mybatisUtils.getSqlSession();
        UserMapper mapper = sqlSession.getMapper(UserMapper.class);
        int i = mapper.updateUser(new User(2, "张四", "zhangsi"));
        List<User> userList = mapper.getUserList();
        for (User user : userList) {
            System.out.println(user);
        }
        sqlSession.commit();
        sqlSession.close();
    }

当数据库中表字段或参数过多,考虑使用Map.

//    用map添加
    int addUser2(Map<String, Object> map);
<insert id="addUser2" parameterType="map">
    insert into mybatis.user(id, pwd) values(#{userId},#{userPwd})
</insert>
@Test
public void addUser2(){
    SqlSession sqlSession = mybatisUtils.getSqlSession();
    UserMapper mapper = sqlSession.getMapper(UserMapper.class);
    Map<String, Object> map = new HashMap<String, Object>();
    map.put("userId", 6);
    map.put("userPwd", "666666");
    int i = mapper.addUser2(map);
    List<User> userList = mapper.getUserList();
    for (User user : userList) {
        System.out.println(user);
    }
    sqlSession.commit();
    sqlSession.close();
}

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

对象传递参数,直接在sql中取对象的属性即可!【parameterType="Object"】

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

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

//    用map查询
    User getUserBy2(Map<String, Object> map);
<select id="getUserBy2" parameterType="map" resultType="com.wlp.pojo.User">
    select * from mybatis.user where name = #{userName} and pwd = #{userPwd}
</select>
@Test
public void getUserList2(){
    SqlSession sqlSession = mybatisUtils.getSqlSession();
    UserMapper mapper = sqlSession.getMapper(UserMapper.class);
    Map<String, Object> map = new HashMap<String, Object>();
    map.put("userName", "狂神");
    map.put("userPwd", "123456");
    User userList2 = mapper.getUserBy2(map);
    System.out.println(userList2);
    sqlSession.close();
}

模糊查询:

1. java代码执行的时候,传递通配符%%

List<User> userByLike = mapper.getUserByLike("%张%");

2.??在sql拼接中使用通配符

select * from mybatis.user where name like "%"#{value}"%"

完整代码:

//    模糊查询
    List<User> getUserByLike(String name);
<select id="getUserByLike" parameterType="String" resultType="com.wlp.pojo.User">
    select * from mybatis.user where name like "%"#{value}"%"
</select>
    @Test
    public void getUserByLike(){
        SqlSession sqlSession = mybatisUtils.getSqlSession();
        UserMapper mapper = sqlSession.getMapper(UserMapper.class);
//        List<User> userByLike = mapper.getUserByLike("%张%");
        List<User> userByLike = mapper.getUserByLike("张");
        for (User user : userByLike) {
            System.out.println(user);
        }
        sqlSession.close();
   }

4. 配置解析

4.1 核心配置文件

mybatis-config.xml

MyBatis的配置文件包含了会深深影响MyBatis行为的设置和属性信息。

  • configuration(配置)
    • properties(属性)
    • settings(设置)
    • typeAliases(类型别名)
    • typeHandlers(类型处理器)
    • objectFactory(对象工厂)
    • plugins(插件)
    • environments(环境配置)
      • environment(环境变量)
        • transactionManager(事务管理器)
        • dataSource(数据源)
    • databaseIdProvider(数据库厂商标识)
    • mappers(映射器)

4.2 环境配置

mybatis 可以配置成适应多种环境

但尽管可以配置多个环境,但每个SqlSessionFactory实例只能选择一种环境。

mybatis默认的事务管理器就是JDBC,连接池:POOLED

属性

这些属性可以在外部进行配置,并可以进行动态替换。你既可以在典型的 Java 属性文件中配置这些属性,也可以在 properties 元素的子元素中设置

编写一个配置文件:db.properties 放在resources目录下

url=jdbc:mysql://localhost:3306/mybatis?useSSL=true&useUnicode=true&characterEncoding=UTF-8
user=root
password=mysq123
driver=com.mysql.cj.jdbc.Driver

在核心配置文件中映入

<!--    引入外部配置文件-->
    <properties resource="db.properties">
        <property name="user" value="root"/>
        <property name="pwd" value="mysq123"/>
    </properties>
    <environments default="development">
        <environment id="development">
            <transactionManager type="JDBC"/>
            <dataSource type="POOLED">
                <property name="driver" value="${driver}"/>
                <property name="url" value="${url}"/>
                <property name="username" value="${user}"/>
                <property name="password" value="${pwd}"/>
            </dataSource>
        </environment>
    </environments>

可以直接引入外部文件

可以在其中增加一些属性配置

如果两个文件有同一个字段,优先使用外部配置文件(db.properties)的。

类型别名

类型别名是为java类型设置的一个短的名字。

存在的意义仅在于用来减少类完全限定名的冗余。

<typeAliases>
    <typeAlias type="com.wlp.pojo.User" alias="User"></typeAlias>
</typeAliases>
<select id="getUserList" resultType="User">
    select * from mybatis.user
</select>

resultType的属性值由 “com.wlp.pojo.User ” 变为 "User"

也可以指定一个包名,MyBatis 会在包名下面搜索需要的 Java Bean,比如:

扫描实体类的包,它的默认别名就为这个类的类名,首字母小写!

<typeAliases>
    <package name="com.wlp.pojo"/>
</typeAliases>
<select id="getUserList" resultType="user">
    select * from mybatis.user
</select>

在实体类比较少的时候,使用第一种方式。当实体类非常多使用第二种。

第一种可以DIY别名,第二种不行。如果非要给第二种DIY别名,需要在实体上增加注释

@Alias("user")
public Class User{}

设置(settings)

这是 MyBatis 中极为重要的调整设置,它们会改变 MyBatis 的运行时行为。

映射器

MapperRegistry: 注册绑定Mapper文件;

方式一:

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

方式二:使用class文件绑定注册

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

方式三:

<mappers>
    <package name="com.wlp.dao"/>
</mappers>

方式二和方式三注意点:

接口和它的Mapper配置文件必须同名且必须在同一个包下

总结:将数据库配置文件外部引入;实体类别名;保证UserMapper接口和UserMapper.xml改为一致!并且放在同一个包下!

生命周期和作用域

生命周期和作用域,错误使用会导致很严重的并发问题

SqlSessionFactoryBuilder:

  • 一旦创建了SqlSessionFactory,就不再需要它了
  • 局部变量

SqlSessionFactory:

可以想象为:数据库连接池

SqlSessionFactory一旦被创建就应该在应用的运行期间一直存在,没有理由丢弃或创建另一个实例

因此 SqlSessionFactory 的最佳作用域是应用作用域。

最简单的就是使用单例模式或者静态单例模式。

SqlSession:

连接到连接池的一个请求!

SqlSession的实例不是线程安全的,因此是不能被共享的,所以它的最佳作用域是请求或方法作用域

用完之后需要赶紧关闭,否则资源被占用!

这里面的每一个mapper,就代表一个具体的业务。

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

数据库中的字段:

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

public class User {
    public int id;
    public String name;
    public String password;
}

运行结果:

解决方式:给名称不一致的字段起别名

<select id="getUserList" resultType="user">
    select id, name, pwd as password  from mybatis.user
</select>

resultMap方式:

<!--    结果集映射-->
    <resultMap id="userMap" type="User">
        <result column="pwd" property="password"></result>
    </resultMap>
<!--    查询全部用户-->
    <select id="getUserList" resultMap="userMap">
        select * from mybatis.user
    </select>

<select>resultMap 的属性与 <resultMap>id 的属性一致

<resultMap>?中type的属性值为原来 <select> 中 resultType的属性值

<result column="pwd" property="password"> 中 column 属性为数据库中字段名,property属性为Java实体类中声明的属性名。

  • resultMap 元素是MyBatis 中最重要最强大的元素。
  • ResultMap 的设计思想是,对于简单的语句根本不需要配置显式的结果映射,而对于复杂一点的语句只需要描述他们的关系就行。

6. 日志

6.1、日志工厂

如果数据库操作出现了异常,可以借助日志排错。

  • SLF4J
  • LOG4J(3.5.9 起废弃) 【※】
  • LOG4J2
  • JDK_LOGGING
  • COMMONS_LOGGING
  • STDOUT_LOGGING 【※】
  • NO_LOGGING

6.2、 Log4j

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

也可以控制每一条日志的输出格式;

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

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

1. 首先导入 log4j 的包

<!-- https://mvnrepository.com/artifact/log4j/log4j -->
<dependency>
    <groupId>log4j</groupId>
    <artifactId>log4j</artifactId>
    <version>1.2.17</version>
</dependency>

2.?log4j.properties

#将等级为DEBUG的日志信息输出到console和file两个目的地,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/wlp.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>

4.?Log4j的使用

在要使用Log4j的类中,导入包import org.apache.log4j.Logger;

日志对象,参数为当前类的class

static Logger logger = Logger.getLogger(UserDaoTest.class);

日志级别

public void testLog4j(){
    logger.info("info:进入了testLog4j");
    logger.debug("debug:进入了testLog4j");
    logger.error("error:进入了testLog4j");
}

7、分页

IDEA中写sql

7.1 使用limit分页

//    分页查询
    List<User> getByLimit(Map<String, Integer> map);
<resultMap id="userMap" type="User">
    <result column="pwd" property="password"></result>
</resultMap>

<!--    分页查询-->
<select id="getByLimit" parameterType="map" resultMap="userMap">
    select * from mybatis.user limit #{startIndex}, #{pageSize}
</select>
@Test
public void getByLimit(){
    SqlSession sqlSession = mybatisUtils.getSqlSession();
    UserMapper mapper = sqlSession.getMapper(UserMapper.class);
    Map<String, Integer> map = new HashMap<String, Integer>();
    map.put("startIndex", 2);
    map.put("pageSize", 3);
    List<User> byLimit = mapper.getByLimit(map);
    for (User user : byLimit) {
        System.out.println(user);
    }
    sqlSession.close();
}

7.2 RowBounds分页

……

8、使用注解开发

8.1 面向接口编程

8.2 使用注解开发

//使用注解开发
    @Select("select * from mybatis.user")
    List<User> getUserList();
//    增
    @Insert("insert into mybatis.user(id, name, pwd) values (#{id}, #{name}, #{pwd})")
    int addUser(User user);
//    删
    @Delete("delete from mybatis.user where id = #{id}")
    int deleteUser(int id);
//    改
    @Update("update mybatis.user set name = #{uname} where id = #{uid}")
    int newUser(@Param("uname") String name, @Param("uid") int id);
//    查(根据条件)
    @Select("select id, name, pwd as password from mybatis.user where name = #{name}")
    User getBy(String name);

关于@Param()注解:

  • 基本类型的参数或者String类型,需要加上
  • 引用类型不需要加
  • 如果只有一个基本类型的话可以忽略,但是建议加上
  • 再sql中引用的就是@Param()中设定的属性名
<mappers>
    <mapper class="com.wlp.dao.UserMapper"/>
</mappers>
@Test
public void getUserList(){
    SqlSession sqlSession = mybatisUtils.getSqlSession();
    UserMapper mapper = sqlSession.getMapper(UserMapper.class);
    List<User> userList = mapper.getUserList();
    for (User user : userList) {
        System.out.println(user);
    }
    sqlSession.close();
}

本质:反射机制实现;

底层:动态代理!

模式(面试高频)

9、Lombok的使用

  1. 安装Lombok插件
  2. 在项目中导入lombok的jar包
<!-- https://mvnrepository.com/artifact/org.projectlombok/lombok -->
<dependency>
    <groupId>org.projectlombok</groupId>
    <artifactId>lombok</artifactId>
    <version>1.18.10</version>
    <scope>provided</scope>
</dependency>

3.?在实体类上加注解?

10、多对一处理

数据库准备:

create table `teacher`(
    `id` int(10) not null,
    `name` varchar(30) default null,
    primary key (`id`)
) engine=innodb default charset = utf8;


insert into teacher values (1, '秦老师');


create table `student`(
    `id` int(10) not null,
    `name` varchar(30) default null,
    `tid` int(10) default null,
    primary key (`id`),
    key `fktid` (`tid`),
    constraint `fktid` foreign key (`tid`) references `teacher` (`id`)
) engine=innodb default charset = utf8;

insert into `student` values 
(1, '小明','1'),
(2, '小红','1'),
(3, '小张','1'),
(4, '小李','1'),
(5, '小王','1');

测试环境搭建:

  1. 导入lombok
  2. 新建实体类Teacher,Student (Student类中要建立与Teacher的关系)
@Data
public class Student {
    private int id;
    private String name;
    private Teacher teacher;
}
@Data
public class Teacher {
    private int id;
    private String name;
}

3.?建立Mapper接口

4.??建立Mapper.xml文件

<?xml version="1.0" encoding="GBK" ?>
<!DOCTYPE mapper
        PUBLIC "-//mybatis.org//DTD Config 3.0//EN"
        "https://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.wlp.dao.TeacherMapper">

</mapper>

5.?在核心配置文件中绑定注册Mapper接口或文件

<!--    每一个Mapper.xml都需要在Mybatis核心配置文件中注册-->
<mappers>
    <mapper class="com.wlp.dao.TeacherMapper"/>
    <mapper class="com.wlp.dao.StudentMapper"/>
</mappers>

6. 测试查询

按照查询嵌套处理

  1. 实体类
  2. 学生类Mapper接口
  3. StudentMapper.xml

StudentMapper.xml中设置:

<!--    思路:
        1. 查询所有的学生信息,以及对应的老师的信息!
        2. 根据查询出来的学生的tid,寻找对应的老师!     子查询
    -->
    <select id="getStudent" resultMap="StudentTeacher">
        select * from student
    </select>
    <resultMap id="StudentTeacher" type="Student">
        <result property="id" column="id"></result>
        <result property="name" column="name"></result>
<!--        复杂的属性,需要单独处理
                对象:association
                集合:collection
-->
        <association property="teacher" column="tid" javaType="Teacher" select="getTeacher"/>
    </resultMap>
    <select id="getTeacher" resultType="Teacher">
        select * from teacher where id = #{id}
    </select>

按照结果嵌套处理

<!--    按结果嵌套查询-->
    <select id="getStudent2" resultMap="StudentTeacher2">
        select s.id sid, s.name sname, t.name tname
        from student s, teacher t
        where s.tid = t.id;
    </select>

    <resultMap id="StudentTeacher2" type="Student">
        <result property="id" column="sid"/>
        <result property="name" column="sname"/>
        <association property="teacher" javaType="Teacher">
            <result property="name" column="tname"/>
        </association>
    </resultMap>

一对多处理:

创建实体类:

import lombok.Data;

@Data
public class Student {
    private int id;
    private String name;
    private int tid;
}
import lombok.Data;

import java.util.List;

@Data
public class Teacher {
    private int id;
    private String name;
    private List<Student> student;
}
//    获取指定老师下的所有学生及老师的信息
    Teacher getTeacher(@Param("tid") int id);
    Teacher getTeacher2(@Param("tid") int id);

TeacherMapper.xml中设置:

    <select id="getTeacher" resultMap="TeacherStudent">
        select s.id sid, s.name sname, t.name tname, t.id tid
        from teacher t, student s
        where t.id = s.tid and t.id = #{tid}
    </select>
    <resultMap id="TeacherStudent" type="Teacher">
        <result property="id" column="tid"/>
        <result property="name" column="tname"/>
        <collection property="student" ofType="Student">
            <result property="id" column="sid"/>
            <result property="name" column="sname"/>
            <result property="tid" column="tid"/>
        </collection>
    </resultMap>

<!--    =====================================-->
    <select id="getTeacher2" resultMap="TeacherStudent2">
        select * from teacher where id = #{tid}
    </select>
    <resultMap id="TeacherStudent2" type="Teacher">
        <collection property="student" javaType="ArrayList" ofType="Student" select="getStudentByTeacher" column="id"/>
    </resultMap>
    <select id="getStudentByTeacher" resultType="Student">
        select * from student where tid = #{tid}
    </select>

总结:

  1. 关联 - association 【多对一】
  2. 集合 - collection 【一对多】
  3. javaType & ofType
    1. javaType 用来指定实体类中属性的类型
    2. ofType 用来指定映射到List或者集合中的pojo类型,泛型中的约束类型!
  1. 注意点:
    • 保证sql的可读性
    • 注意一对多和多对一中属性名和字段的问题!
    • 如果问题不好排查错误,可以借助log4j日志

面试高频

    • MySQL引擎
    • InnoDB底层原理
    • 索引
    • 索引优化

12、动态SQL

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

生成随机序号:

public class IDutils {
    public static String getId(){
        return UUID.randomUUID().toString().replaceAll("-", "");
    }
    @Test
    public void test(){
        System.out.println(IDutils.getId());
    }
}

搭建环境

CREATE TABLE `blog`(
`id` VARCHAR(50) NOT NULL COMMENT '博客id',
`title` VARCHAR(100) NOT NULL COMMENT '博客标题',
`author` VARCHAR(30) NOT NULL COMMENT '博客作者',
`create_time` DATETIME NOT NULL COMMENT '创建时间',
`views` INT(30) NOT NULL COMMENT '浏览量'
)ENGINE=INNODB DEFAULT CHARSET=utf8

创建一个基础工程:

    <settings>
<!--        是否开启自动驼峰命名规则映射-->
        <setting name="mapUnderscoreToCamelCase" value="true"/>
    </settings>
  • 导包
  • 编写配置文件
  • 编写实体类
import java.util.Date;
@Data
public class Blog {
    private String id;
    private String title;
    private String author;
    private Date createTime;
    private int views;

编写实体类对应的Mapper接口和Mapper.xml文件

public interface BlogMapper {
    int addBlog(Blog blog);
    List<Blog> getBlog();
}
<insert id="addBlog" parameterType="blog">
    insert into mybatis.blog(id, title, author, create_time, views)
    values (#{id},#{title},#{author},#{createTime},#{views})
</insert>
<select id="getBlog" resultType="blog">
    select * from blog
</select>
public void addBlog(){
        SqlSession sqlSession = mybatisUtils.getSqlSession();
        BlogMapper mapper = sqlSession.getMapper(BlogMapper.class);

//        mapper.addBlog(new Blog(IDutils.getId(), "Mybatis如此简单", "狂神说", new Date(), 999));
        Blog blog = new Blog();

        blog.setId(IDutils.getId());
        blog.setTitle("Mybatis如此简单");
        blog.setAuthor("狂神说");
        blog.setCreateTime(new Date());
        blog.setViews(999);
        mapper.addBlog(blog);

        blog.setId(IDutils.getId());
        blog.setTitle("java如此简单");
        mapper.addBlog(blog);

        blog.setId(IDutils.getId());
        blog.setTitle("Spring如此简单");
        mapper.addBlog(blog);

        blog.setId(IDutils.getId());
        blog.setTitle("微服务如此简单");
        mapper.addBlog(blog);

        sqlSession.commit();
        List<Blog> blog2 = mapper.getBlog();
        for (Blog blog1 : blog2) {
            System.out.println(blog1);
        }
        sqlSession.close();
    }

插入完了必须要commit一下,不然数据库不显示

动态SQL——IF语句

List<Blog> getBlogIF(Map map);
<select id="getBlogIF" parameterType="map" resultType="blog">
    select * from blog where 1=1
    <if test="title != null">
        and title = #{title}
    </if>
</select>

动态SQL——where语句

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

动态SQL——choose(when, otherwise)语句

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

从上到下只会选择choose括号中的其中之一执行

动态SQL——set 语句

<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 元素会动态前置SET关键字,同时也会删掉无关的逗号。

动态SQL——trim(where,set)

SQL片段

有时需要将一部分功能抽取出来方便复用!

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

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

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

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

注意:

    • 最好基于单表来定义SQL片段!
    • 不要存在where标签

Foreach

<select id="getBlogForeach" parameterType="map" resultType="blog">
    select * from blog
    <where>
        <foreach collection="ids" item="id" open="and (" close=")" separator="or">
            id = #{id}
        </foreach>
    </where>
</select>
SqlSession sqlSession = mybatisUtils.getSqlSession();
BlogMapper mapper = sqlSession.getMapper(BlogMapper.class);

HashMap map = new HashMap();
ArrayList<Integer> ids = new ArrayList<Integer>();
ids.add(1);


map.put("ids", ids);

List<Blog> blogs = mapper.getBlogForeach(map);

for (Blog blog : blogs) {
    System.out.println(blog);
}

13、缓存

测试步骤:

  1. 开启日志
  2. 测试在一个session中查询两次相同记录
  3. 查看日志输出

一级缓存 存在于:一次session开启和关闭之间

缓存失效的情况:

  1. 查询不同的东西
  2. 增删改操作,可能会改变原来的数据,所以必定会刷新缓存!
  3. 查询不同的mapper.xml (二级缓存都不存在)
  4. 手动清理缓存

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

二级缓存:

默认情况下,只启用了本地的会话缓存,仅仅对一个会话中的数据进行缓存,要启用全局的二级缓存,只需要在SQL映射文件中添加一行

步骤:

1. 开启全局缓存

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

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

<!--在当前mapper.mxl中使用二级缓存-->
        <cache/>

3. 测试

注意:需要将实体类序列化,否则会报错

小结:

    • 只要开启了二级缓存,在同一个Mapper下就有效
    • 所有的数据都会先放在一级缓存中
    • 只有当会话提交,或者关闭的时候,才会提交到二级缓存中!

查询顺序:先看二级缓存, 再查一级缓存, 都没有的话查数据库

Ehcache

开源java分布式缓存,主要面向通用缓存

导包:

<!-- https://mvnrepository.com/artifact/org.mybatis.caches/mybatis-ehcache -->
<dependency>
    <groupId>org.mybatis.caches</groupId>
    <artifactId>mybatis-ehcache</artifactId>
    <version>1.2.3</version>
</dependency>
<cache type="org.mybatis.caches.ehcache.EhcacheCache"/>

maxElementsInMemory:缓存最大数目

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