其他分享
首页 > 其他分享> > Mybatis完整版详解

Mybatis完整版详解

作者:互联网

一、简介

1.什么是MyBatis

(1)如何获得MyBatis

2.持久化

数据持久化

为什么需要持久化

3.持久层

Dao层,Service层,Controller层 什么叫层

4.为什么需要Mybatis

二、第一个Mybatis程序

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

1.搭建环境

搭建一个数据库


新建一个maven项目,并导入maven依赖,要注意导入mybatis时需要手动开启Tomcat的bin目录下startup.sh(只针对本机,Windows开启startup.bat)

 <dependencies>
        <dependency>
            <groupId>mysql</groupId>
            <artifactId>mysql-connector-java</artifactId>
            <version>8.0.28</version>
        </dependency>
        <dependency>
            <groupId>org.mybatis</groupId>
            <artifactId>mybatis</artifactId>
            <version>3.5.6</version>
        </dependency>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>4.13.1</version>
        </dependency>
    </dependencies>

2.创建一个模块

编写mybatis的核心配置文件

mybatis-config.xml文件代码
  <?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>
    <environments default="development">
        <environment id="development">
            <transactionManager type="JDBC"/>
            <dataSource type="POOLED">
<!--                &amp;在xml文件中与符号需要这样来转义-->
                <property name="driver" value="com.mysql.jdbc.Driver"/>
                <property name="url" value="jdbc:mysql://localhost:3306/mybatis?serverTimezone=Asia/Shanghai&amp;useSSL=true&amp;useUnicode=true&amp;characterEncoding=utf8"/>
                <property name="username" value="root"/>
                <property name="password" value="root123456"/>
            </dataSource>
        </environment>
    </environments>
<!--    每一个mapper.xml都需要在Mybatis核心配置文件中注册-->
    <mappers>
        <mapper resource="com/tang/dao/UserMapper.xml"/>
    </mappers>
</configuration>

注意:这里如果没写加载驱动的话会报以下错误
org.apache.ibatis.exceptions.PersistenceException:

Error querying database. Cause: java.lang.NullPointerException: Cannot invoke "Object.hashCode()" because "key" is null

但是写了又会说会自动加载,加载多余,不过这并不是错误,因此还是写上安全

编写mybatis工具类

//sqlSessionFactory-->sqlSession
public class MybatisUtils {

    private static SqlSessionFactory sqlSessionFactory;

    static{
        try {
            //使用Mybatis第一步,获取sqlSessionFactory对象
            //这三行代码是从mybatis中文文档中获取到的,规定这么写的
            String resource = "mybatis-config.xml";//这里写上自己的mybatis配置文件的文件名即可
            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;
    }
}

3.编写代码

实体类

字段名和数据里的字段一一对应
public class User {
    private int id;
    private String name;
    private String pwd;

    public User() {
    }

    public User(int id, String name, String pwd) {
        this.id = id;
        this.name = name;
        this.pwd = pwd;
    }

    public int getId() {
        return id;
    }

    public void setId(int id) {
        this.id = id;
    }

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public String getPwd() {
        return pwd;
    }

    public void setPwd(String pwd) {
        this.pwd = pwd;
    }

    @Override
    public String toString() {
        return "User{" +
                "id=" + id +
                ", name='" + name + '\'' +
                ", pwd='" + pwd + '\'' +
                '}';
    }
}

Dao接口

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.tang.dao.UserDao">
    <!--  select查询语句  -->
    <!--id等价于以前去实现接口并重写方法   resultType:执行sql返回的结果集,仅需要返回接口的方法中的泛型类型即可 -->
    <select id="getUserList" resultType="com.tang.pojo.User">
        select * from mybatis.user
    </select>
</mapper>

4.测试

注意点:

运行结果图

三、CRUD(增删改查)

1.Select

选择,查询语句

编写接口

//查询指定id的用户
    User getUserById(int id);

编写对应Dao中的sql语句

<select id="getUserById" parameterType="int" resultType="com.tang.pojo.User">
        select * from mybatis.user where id= #{id}
    </select>

测试

//查询指定用户
    @Test
    public void getUserByID(){
        SqlSession sqlSession = MybatisUtils.getSqlSession();
        UserDao mapper = sqlSession.getMapper(UserDao.class);
        User user = mapper.getUserById(1);
        System.out.println(user);
        sqlSession.close();
    }

2.Insert

编写接口

//添加一个用户
    int addUser(User user);

编写对应Dao中的sql语句

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

测试

//添加用户
    @Test
    public void addUserTest(){
        SqlSession sqlSession = MybatisUtils.getSqlSession();
        UserDao mapper = sqlSession.getMapper(UserDao.class);
        mapper.addUser(new User(4,"twq","1233"));

        sqlSession.commit();//增删改必须要提交事务,否则在数据库中就无法查看增删改后的结果
        sqlSession.close();
    }

3.update

编写接口

//修改一个用户
    int updateUser(User user);

编写对应Dao中的sql语句

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

测试

//修改用户
    @Test
    public void updateUserTest(){
        SqlSession sqlSession = MybatisUtils.getSqlSession();
        UserDao mapper = sqlSession.getMapper(UserDao.class);
        mapper.updateUser(new User(1,"唐","1234"));

        sqlSession.commit();
        sqlSession.close();
    }

4.delete

编写接口

//删除一个用户
    int deleteUser(int id);

编写对应Dao中的sql语句

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

测试

@Test
    public  void deleteUserTest(){
        SqlSession sqlSession = MybatisUtils.getSqlSession();
        UserDao mapper = sqlSession.getMapper(UserDao.class);
        mapper.deleteUser(2);

        sqlSession.commit();
        sqlSession.close();
    }

运行前user中表的数据

运行增删改查之后结果图

5.万能的map

目的:将user表中id=1的name改为“唐三唐昊” 接口代码
//万能的map
    int updateUser2(Map<String,Object> map);

对应Dao中sql代码

    <update id="updateUser2" parameterType="map">
--         这里就没有必要在把user中的所有字段都写进来,用到哪个就可以写哪个字段,且传进去的字段名可以任意写
        update mybatis.user set name=#{username}  where id=#{userid};
    </update>

测试代码

 //map实现用户修改
    @Test
    public void updateUser2Test(){
        SqlSession sqlSession = MybatisUtils.getSqlSession();
        UserDao mapper = sqlSession.getMapper(UserDao.class);

        HashMap<String, Object> map = new HashMap<String, Object>();

        map.put("userid",1);
        map.put("username","唐三唐昊");

        mapper.updateUser2(map);

        sqlSession.commit();//增删改必须要提交事务,否则在数据库中就无法查看增删改后的结果
        sqlSession.close();
    }

运行结果图


Map传递参数,直接在sql中取出key即可

对象传递参数,直接在sql中取对象的属性即可

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

6.模糊查询

目的:利用模糊查询   查询所有姓唐的人 接口
 List<User> getUserLike(String value);

sql代码

 <select id="getUserLike" resultType="com.tang.pojo.User">
        select *from mybatis.user where name like #{value}
    </select>

测试代码
在Java代码执行的时候,传递通配符% %,不会存在sql注入的问题

    //模糊查询
    @Test
    public void getUserLikeTest(){
        SqlSession sqlSession = MybatisUtils.getSqlSession();
        UserDao mapper = sqlSession.getMapper(UserDao.class);

        List<User> userLike = mapper.getUserLike("%唐%");

        for(User user: userLike){
            System.out.println(user);
        }

        sqlSession.close();
    }

在sql拼接中使用通配符,存在sql注入问题

<select id="getUserLike" resultType="com.tang.pojo.User">
        select *from mybatis.user where name like "%"#{value}"%"
    </select>
List<User> userLike = mapper.getUserLike("唐");

两种情况的运行结果

四、配置解析

1.核心配置文件

2.环境配置(environments)

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

不过要记住:尽管可以配置多个环境,但每个 SqlSessionFactory 实例只能选择一种环境。

学会使用配置多套运行环境,比如如下这种方式就可以选择id为test的配置环境,虽然有多套配置环境,但是最终运行的只会是其中一种

<configuration>
    <environments default="test">
        <environment id="development">
            <transactionManager type="JDBC"/>
            <dataSource type="POOLED">
<!--                &amp;在xml文件中与符号需要这样来转义-->
                <property name="driver" value="com.mysql.jdbc.Driver"/>
                <property name="url" value="jdbc:mysql://localhost:3306/mybatis?serverTimezone=Asia/Shanghai&amp;useSSL=true&amp;useUnicode=true&amp;characterEncoding=utf8"/>
                <property name="username" value="root"/>
                <property name="password" value="root123456"/>
            </dataSource>
        </environment>

        <environment id="test">
            <transactionManager type="JDBC"/>
            <dataSource type="POOLED">
                <!--                &amp;在xml文件中与符号需要这样来转义-->
                <property name="driver" value="com.mysql.jdbc.Driver"/>
                <property name="url" value="jdbc:mysql://localhost:3306/mybatis?serverTimezone=Asia/Shanghai&amp;useSSL=true&amp;useUnicode=true&amp;characterEncoding=utf8"/>
                <property name="username" value="root"/>
                <property name="password" value="root123456"/>
            </dataSource>
        </environment>
    </environments>
<!--    每一个mapper.xml都需要在Mybatis核心配置文件中注册-->
    <mappers>
        <mapper resource="com/tang/dao/UserMapper.xml"/>
    </mappers>
</configuration>

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

3.属性(properties)

我们可以通过properties属性来实现引用配置文件

这些属性都是可外部配置且可动态替换的,既可以在典型的Java属性文件中配置,也可通过properties元素的子元素来传递【db.properties】


编写一个配置文件

db.properties

driver=com.mysql.jdbc.Driver
url=jdbc:mysql://localhost:3306/mybatis?useSSL=true&useUnicode=true&characterEncoding=utf8"
username=root
password=root123456

在核心配置文件中引入

<!--引入外部配置文件-->
    <properties resource="db.properties"/>

然后就可以通过如下的方式去读取db.properties文件里的值

<property name="driver" value="${driver}"/>
<property name="url" value="${url}"/>
<property name="username" value="${username}"/>
<property name="password" value="${password}"/>

4.类型别名(typeAliases)

作用
<!--可以给实体类起别名-->
    <typeAliases>
        <typeAlias type="com.tang.pojo.User" alias="User"></typeAlias>
    </typeAliases>

也可以指定一个包名,MyBatis 会在包名下面搜索需要的 Java Bean,比如:
扫描实体类的包,它的默认别名就为这个类的 类名,首字母小写,大写也行!
如下代码在调用到pojo包下面的类的时候可以直接使用类名的小写字母完成

<typeAliases>
    <package name="com.tang.pojo"/>
</typeAliases>

在实体类比较少的时候使用第一种方式

如果实体类比较多,建议使用第二种

第一种可以DIY起别名,第二种则不行,如果非要改,需要在实体类上增加注解

在实体类上加注解给类名起别名

@Alias("user")
public class User {

5.设置(settings)

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

6.映射器(mappers)

MapperRegistry:注册绑定我们的Mapper文件;
方式一:【推荐使用】

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

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

<mappers>
    <mapper class="com.tang.dao.UserMapper"/>
</mappers>

注意点

7.作用域(Scope)和生命周期

不同作用域和生命周期类别是至关重要的,因为错误的使用会导致非常严重的并发问题
SqlSessionFactoryBuilder


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

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

1.问题

数据库中的字段

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

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

测试出现问题

select * from mybatis.user where id= #{id}
//类处理器,以上等价于
select id,name,pwd from mybatis.user where id = #{id}
//所以并未查找到pwd字段所以测试结果password为空

解决方法:

2.resultMap

结果集映射
数据库中的字段为 id    name    pwd
User实体类字段为 id    name    password
<!--结果集映射-->
<resultMap id="UserMap" type="user">
    <!--column数据库中的字段,property实体类中的属性-->
   <!--id和name属性可以不写,只需要写实体类中与数据库不一样的字段的映射即可-->
    <result column="id" property="id"></result>
    <result column="name" property="name"></result>
    <result column="pwd" property="password"></result>
</resultMap>
 <!--select中resultMap的值必须与上面resultMap的id的值相同-->
<select id="getUserById"  resultMap="UserMap">
    select * from mybatis.user where id= #{id}
</select>

六、日志

1.日志工厂

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

曾经出现异常通常使用:sout、debug来找到异常

现在:使用日志工厂来实现

STDOUT_LOGGING标准日志输出

<settings>
    <!--标准的日志工厂实现-->
    <setting name="logImpl" value="STDOUT_LOGGING"/>
</settings>

2.Log4j

什么是log4j?

先导入Log4j的包

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

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/tang.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

配置log4j日志的实现

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

log4j的使用,直接测试

简单使用

日志级别

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

运行结果

七、分页

1.使用Limit实现分页

接口

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

接口的xml文件

<!--    分页实现查询-->
<!--    这里写user是因为我已经起过别名,所以可简写为user-->
<select id="getUserByLimit" parameterType="map" resultType="user">
    select * from mybatis.user limit #{startIndex},#{pageSize}
</select>

测试

@Test
public void getUserByLimit(){
  SqlSession sqlSession = MybatisUtils.getSqlSession();
  UserMapper mapper = sqlSession.getMapper(UserMapper.class);

  HashMap<String, Integer> map = new HashMap<String, Integer>();
  map.put("startIndex",0);
  map.put("pageSize",2);

  List<User> userList = mapper.getUserByLimit(map);

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

运行结果图

八、使用注解开发

1.面向接口编程

2.注解的使用

注解在接口上实现

public interface UserMapper {
   @Select("select * from user")
   List<User> getUsers();
}

在核心配置文件中绑定接口

<!--    绑定接口-->
<mappers>
    <mapper class="com.tang.dao.UserMapper"></mapper>
</mappers>

本质:反射机制实现

3.Mybatis详细执行流程

4.注解实现CRUD

我们可以再工具类创建的时候实现自动提交事务
 public static SqlSession getSqlSession(){
        //这里写上true之后在进行增删改之后就会自动提交事务
        SqlSession sqlSession = sqlSessionFactory.openSession(true);
        return sqlSession;
    }

配置文件中对接口进行注册

<mappers>
    <mapper class="com.tang.dao.UserMapper"></mapper>
</mappers>

接口代码

//查询所有用户
    @Select("select * from user")
    List<User> getUserList();

    //方法存在多个参数,所有的参数前面必须加上@Param注解
    //查询指定id的用户
    @Select("select * from user where id=#{id}")
    User getUserById(@Param("id") int id);
    
    //增加用户
    @Insert("insert into user(id,name,pwd) values(#{id},#{name},#{password})")
    int addUser(User user);
    
    //修改用户
    @Update("update user set name =#{name},pwd=#{password} where id=#{id}")
    int updateUser(User user);

    //删除用户
    @Delete("delete from user where id=#{uid}")
    int deleteUser(@Param("uid")int id);

增删改查的测试类

@Test
   public void getUserListTest(){
      SqlSession sqlSession = MybatisUtils.getSqlSession();
      UserMapper mapper = sqlSession.getMapper(UserMapper.class);
      List<User> userList = mapper.getUserList();
      for (User user : userList) {
         System.out.println(user);
      }
   }
   @Test
    public void getUserBID(){
       SqlSession sqlSession = MybatisUtils.getSqlSession();
       UserMapper mapper = sqlSession.getMapper(UserMapper.class);
       User userById = mapper.getUserById(1);
       System.out.println(userById);
       sqlSession.close();
   }
   @Test
   public void addUserTest(){
      SqlSession sqlSession = MybatisUtils.getSqlSession();
      UserMapper mapper = sqlSession.getMapper(UserMapper.class);
      mapper.addUser(new User(6,"唐银","123"));
      sqlSession.close();
   }
   @Test
   public void updateUserTest(){
      SqlSession sqlSession = MybatisUtils.getSqlSession();
      UserMapper mapper = sqlSession.getMapper(UserMapper.class);
      mapper.updateUser(new User(1,"汤昊","678"));
      sqlSession.close();
   }

   @Test
   public void deleteUserTest(){
      SqlSession sqlSession = MybatisUtils.getSqlSession();
      UserMapper mapper = sqlSession.getMapper(UserMapper.class);
      mapper.deleteUser(3);
      sqlSession.close();
   }

对user表操作之后的结果图

【关于@Param()注解】

九、Lombok

1.使用步骤

<dependency>
    <groupId>org.projectlombok</groupId>
    <artifactId>lombok</artifactId>
    <version>1.18.24</version>
</dependency>

十、多对一处理

如学生和老师之间的关系

1.测试环境搭建

最终的包结构图

步骤

运行结果图

2.按照查询嵌套处理

目的:查询每个学生及对应老师的信息
<mapper namespace="com.tang.dao.StudentMapper">

    <!--思路:
        1.查询所有的学生信息
        2.根据查询出来的学生的tid,寻找对应的老师
    -->
    <select id="getStudent" resultMap="StudentTeacher">
--         select s.id,s.name,t.name from student s,teacher t where s.tid = t.id;
        select * from student
    </select>
    <resultMap id="StudentTeacher" type="Student">
        <!--因为student和Teacher表中id,和name字段相同,因此这里没必要写映射关系-->
        <!--复杂的属性,我们需要单独处理
            对象使用association
            集合使用collection
        -->
        <association property="teacher" column="tid" javaType="Teacher" select="getTeacher"></association>
    </resultMap>
    <select id="getTeacher" resultType="Teacher">
        select * from teacher where id=#{id}
    </select>
</mapper>

运行结果图

3.按照结果嵌套处理

目的:查询每个学生及对应老师的信息
<!--按照结果嵌套处理-->
<select id="getStudent2" resultMap="StudentTeacher2">
    select s.id sid,s.name snmae,t.id tid,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>
    <result property="name" column="sname"></result>
    <association property="teacher" javaType="Teacher" >
        <result property="name" column="tname"></result>
        <result property="id" column="tid"></result>
    </association>
</resultMap>

十一、一对多处理

比如:一个老师拥有多个学生 对于老师而言,就是一对多的关系

1.环境搭建

与之前环境搭建差不多 这里实体类变为
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> students;
}

2.按照结果查询

目的:查询每个老师及对应学生的信息
<mapper namespace="com.tang.dao.TeacherMapper">
    <!--按结果嵌套查询-->
    <select id="getTeacher" resultMap="TeacherStudent">
        select s.id sid,s.name snmae,t.id tid,t.name tname
        from student s,teacher t
        where s.tid = t.id and t.id=#{tid}
    </select>
    <resultMap id="TeacherStudent" type="Teacher">
        <result property="id" column="tid"></result>
        <result property="name" column="tname"></result>
        <!--复杂的属性,我们需要单独处理
            对象使用association
            集合使用collection
            javaType指定属性的类型
            集合中的泛型信息,使用ofType获取
        -->
        <collection property="students" ofType="Student">
            <result property="id" column="sid"></result>
            <result property="name" column="snmae"></result>
            <result property="tid" column="tid"></result>
        </collection>
    </resultMap>
</mapper>

3.小结

注意点:

【面试高频】

十二、动态SQL

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

1.环境搭建

编写实体类

import lombok.Data;

import java.util.Date;
@Data
public class Blog {

    private String id;
    private String title;
    private String author;
    private Date createTime;
    private int views;
}

2.IF

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

测试代码

@Test
public void queryBlogIFTest(){
    SqlSession sqlSession = MybatisUtils.getSqlSession();
    BlogMapper mapper = sqlSession.getMapper(BlogMapper.class);

    HashMap map = new HashMap();
    map.put("title","java很简单");
    List<Blog> blogs = mapper.queryBlogIF(map);
    for (Blog blog : blogs) {

        System.out.println(blog);
    }
    sqlSession.close();
}

运行结果图

3.choose(when,otherwise)

有时候,我们不想使用所有的条件,而只是想从多个条件中选择一个使用。针对这种情况,MyBatis 提供了 choose 元素,它有点像 Java 中的 switch 语句。

还是上面的例子,但是策略变为:传入了 “title” 就按 “title” 查找,传入了 “author” 就按 “author” 查找的情形。若两者都没有传入,就返回标记为 featured 的 BLOG(这可能是管理员认为,与其返回大量的无意义随机 Blog,还不如返回一些由管理员精选的 Blog)

<select id="queryBlogChoose" parameterType="map" resultType="blog">
    select * from mybatis.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>

测试代码

@Test
    public void queryBlogChoose(){
        SqlSession sqlSession = MybatisUtils.getSqlSession();
        BlogMapper mapper = sqlSession.getMapper(BlogMapper.class);

        HashMap map = new HashMap();
        map.put("author","唐三");
        map.put("views","9999");
        List<Blog> blogs = mapper.queryBlogChoose(map);
        for (Blog blog : blogs) {
            System.out.println(blog);
        }
        sqlSession.close();
    }

测试结果

4.trim、where、set

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

    </set>
    where id =#{id}
</update>

测试代码

@Test
public void queryBlogUpdate(){
    SqlSession sqlSession = MybatisUtils.getSqlSession();
    BlogMapper mapper = sqlSession.getMapper(BlogMapper.class);

    HashMap map = new HashMap();
    map.put("title","2mybatis很简单");
    map.put("author","唐四");
    //根据第一个博客的id,修改其标题和作者
    map.put("id","bf618aebd32143648dd982b31a2b8016");

    mapper.updateBlog(map);
    sqlSession.close();
}

5.SQL片段

有的时候,我们可能会将一些功能的部分抽取出来,方便复用 (1)使用SQL标签抽取公共的部分
<sql id="if-title-author">
    <if test="title != null">
        title = #{title},
    </if>
    <if test="author != null">
        author =#{author}
    </if>
</sql>

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

<update id="updateBlog" parameterType="map">
    update mybatis.blog
    <set>
        <include refid="if-title-author"></include>
    </set>
    where id =#{id}
</update>

注意事项:

6.Foreach

foreach 元素的功能非常强大,它允许你指定一个集合,声明可以在元素体内使用的集合项(item)和索引(index)变量。它也允许你指定开头与结尾的字符串以及集合项迭代之间的分隔符。这个元素也不会错误地添加多余的分隔符,看它多智能!

提示 你可以将任何可迭代对象(如 List、Set 等)、Map 对象或者数组对象作为集合参数传递给 foreach。当使用可迭代对象或者数组时,index 是当前迭代的序号,item 的值是本次迭代获取到的元素。当使用 Map 对象(或者 Map.Entry 对象的集合)时,index 是键,item 是值。

<select id="queryBlogForeach" parameterType="map" resultType="blog">
    select * from mybatis.blog
    <where>
        <foreach collection="ids" item="id" open="and (" close=")" separator="or">
            id=#{id}
        </foreach>
    </where>
</select>

测试代码如下

 @Test
    public void queryBlogForeach(){
        SqlSession sqlSession = MybatisUtils.getSqlSession();
        BlogMapper mapper = sqlSession.getMapper(BlogMapper.class);

        HashMap map = new HashMap();

        ArrayList<Integer> ids = new ArrayList<Integer>();

        ids.add(1);
        ids.add(2);
        ids.add(3);

        map.put("ids",ids);
        List<Blog> blogs = mapper.queryBlogForeach(map);

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

运行结果

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

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

十三、缓存

1.简介

平时我们常用的数据库的查询:主要用来连接数据库,这样做比较消耗资源
一次查询的结果,给他暂存在一个可以直接取到的地方-->内存:缓存

我们再次查询相同数据的时候,直接走缓存,就不用走数据库了
【什么是缓存】

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

【为什么使用缓存?】
减少和数据库的交互次数,减少系统开销,提高系统效率

【什么样的数据可以使用缓存?】
经常查询并且不经常改变的数据 【可以使用缓存】。简单理解,只有查询才会用到缓存!!!

2.MyBatis缓存 (目前Redis使用最多)

3.一级缓存

一级缓存也叫本地缓存:SqlSession

测试步骤:

4.二级缓存

概念:

使用步骤:

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

②在要使用二级缓存的Mapper中开启
<!--在当前Mapper.xml中使用二级缓存-->
    <!--
    以下参数的解释
    eviction:使用FIFO这样一个输入输出策略
    flushInterval:每隔60秒刷新一次缓存
    size:最多存512个缓存
    readOnly:是否只读
    这些参数也可以不写
    -->
    <cache eviction="FIFO"
           flushInterval="60000"
           size="512"
           readOnly="true"/>
③测试
@Test
public void test(){
    SqlSession sqlSession = MybatisUtils.getSqlSession();
    SqlSession sqlSession2 = MybatisUtils.getSqlSession();

    UserMapper mapper = sqlSession.getMapper(UserMapper.class);
    User user = mapper.queryUserById(1);
    System.out.println(user);
    sqlSession.close();
    //mapper.updateUser(new User(2, "aaa", "bbb"));
//        sqlSession.clearCache();
    UserMapper mapper2 = sqlSession2.getMapper(UserMapper.class);

    System.out.println("=================");
    User user1 = mapper2.queryUserById(1);
    System.out.println(user1);
}

测试结果

 Cause: java.io.NotSerializableException: com.tang.pojo.User

解决方法:让User实体类序列化即可,也就是如下实现Serializable接口即可实现实体类的序列化

import java.io.Serializable;

@Data
@NoArgsConstructor
@AllArgsConstructor
public class User implements Serializable {
    private int id;
    private  String name;
    private String pwd;
}

小结:

5.Mybatis缓存原理

6.自定义缓存Ehcache

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

要在程序中使用ehcahe,先要导包

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

如果运行报java.lang.NoClassDefFoundError: Could not initialize class net.sf.ehcache.CacheManager就表名ehcache的包导错了,可以跟改为我上面的包即可
在mapper中指定使用我们的ehcache缓存

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

ehcache.xml

<?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:默认缓存策略,当ehcache找不到定义的缓存时,则使用这个缓存策略。只能定义一个。
     -->
    <!--
      name:缓存名称。
      maxElementsInMemory:缓存最大数目
      maxElementsOnDisk:硬盘最大缓存个数。
      eternal:对象是否永久有效,一但设置了,timeout将不起作用。
      overflowToDisk:是否保存到磁盘,当系统当机时
      timeToIdleSeconds:设置对象在失效前的允许闲置时间(单位:秒)。仅当eternal=false对象不是永久有效时使用,可选属性,默认值是0,也就是可闲置时间无穷大。
      timeToLiveSeconds:设置对象在失效前允许存活时间(单位:秒)。最大时间介于创建时间和失效时间之间。仅当eternal=false对象不是永久有效时使用,默认是0.,也就是对象存活时间无穷大。
      diskPersistent:是否缓存虚拟机重启期数据 Whether the disk store persists between restarts of the Virtual Machine. The default value is false.
      diskSpoolBufferSizeMB:这个参数设置DiskStore(磁盘缓存)的缓存区大小。默认是30MB。每个Cache都应该有自己的一个缓冲区。
      diskExpiryThreadIntervalSeconds:磁盘失效线程运行时间间隔,默认是120秒。
      memoryStoreEvictionPolicy:当达到maxElementsInMemory限制时,Ehcache将会根据指定的策略去清理内存。默认策略是LRU(最近最少使用)。你可以设置为FIFO(先进先出)或是LFU(较少使用)。
      clearOnFlush:内存数量最大时是否清除。
      memoryStoreEvictionPolicy:可选策略有:LRU(最近最少使用,默认策略)、FIFO(先进先出)、LFU(最少访问次数)。
      FIFO,first in first out,这个是大家最熟的,先进先出。
      LFU, Less Frequently Used,就是上面例子中使用的策略,直白一点就是讲一直以来最少被使用的。如上面所讲,缓存的元素有一个hit属性,hit值最小的将会被清出缓存。
      LRU,Least Recently Used,最近最少使用的,缓存的元素有一个时间戳,当缓存容量满了,而又需要腾出地方来缓存新的元素的时候,那么现有缓存元素中时间戳离当前时间最远的元素将被清出缓存。
   -->
    <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>

标签:mapper,public,索引,sqlSession,详解,user,Mybatis,完整版,id
来源: https://www.cnblogs.com/twq46/p/16552265.html