DOCTYPE configuration
PUBLIC "-//mybatis.org//DTD Config 3.0//EN"
"http://mybatis.org/dtd/mybatis-3-config.dtd">
<configuration>
<properties resource="db.properties">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="${password}"/>
dataSource>
environment>
environments>
<mappers>
<mapper resource="UserDaoMapper.xml"/>
mappers>
configuration>
user = root
password = 123123
driver = com.mysql.cj.jdbc.Driver
#url = jdbc:mysql://localhost:3306/mybatis
url = jdbc:mysql://localhost:3306/mybatis?serverTimezone=UTC&useSSL=true&useUnicode=true&characterEncoding=UTF8
initsize = 5
maxsize = 50
package com.tan00xu.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.IOException;
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 (IOException e) {
e.printStackTrace();
}
}
/**
* 既然在了 SqiSessionFactory,顾名思义,我们就可以从中获得SqlSession的实例了。
* SqlSession 完全包含了面向数据库执行5QL命令所击的所有方法。
* 可以通过 SqlSession 实例来直接执行已映射的 SQL 语句。
*/
public static SqlSession getSqlSession(){
return sqlSessionFactory.openSession();
}
}
package com.tan00xu.pojo;
public class User {
private int id;
private String name;
private String account;
private String password;
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 getAccount() {
return account;
}
public void setAccount(String account) {
this.account = account;
}
public String getPassword() {
return password;
}
public void setPassword(String password) {
this.password = password;
}
public User() {
}
public User(int id, String name, String account, String password) {
this.id = id;
this.name = name;
this.account = account;
this.password = password;
}
@Override
public String toString() {
return "Student{" +
"id=" + id +
", name='" + name + '\'' +
", account='" + account + '\'' +
", password='" + password + '\'' +
'}';
}
}
package com.tan00xu.dao;
import com.tan00xu.pojo.User;
import java.util.List;
public interface UserDao {
public List<User> listUsers();
}
DOCTYPE mapper
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.tan00xu.dao.UserDao">
<select id="listUsers" resultType="com.tan00xu.pojo.User">
select * from user
select>
mapper>
maven由于他的约定大于配置,我们之后可以能遇到我们写的配置文件,无法被导出或者生效的问题,解决方案:
<build>
<resources>
<resource>
<directory>src/main/resourcesdirectory>
<includes>
<include>**/*.propertiesinclude>
<include>**/*.xmlinclude>
includes>
<filtering>truefiltering>
resource>
<resource>
<directory>src/main/javadirectory>
<includes>
<include>**/*.propertiesinclude>
<include>**/*.xmlinclude>
includes>
<filtering>truefiltering>
resource>
resources>
build>
package com.tan00xu.dao;
import com.tan00xu.pojo.User;
import com.tan00xu.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
UserDao userDao = sqlSession.getMapper(UserDao.class);
List<User> userList = userDao.listUsers();
//不推荐使用
//List userList = sqlSession.selectList("com.tan00xu.dao.UserDao.listUsers");
for (User user : userList) {
System.out.println(user);
}
//关闭SqlSession
sqlSession.close();
}
}
namespace中的包名要和Dao/Mapper接口的包名一致!
选择、查询语句
编写接口
/**
* 根据id查询
* @param id
* @return User
*/
User getUserById(int id);
编写对应的Mapper中的sql语句
<select id="getUserById" parameterType="int" resultType="com.tan00xu.pojo.User">
select *
from mybatis.user
where id = #{id}
select>
测试
@Test
public void testGetUserById() {
SqlSession sqlSession = MybatisUtils.getSqlSession();
UserMapper mapper = sqlSession.getMapper(UserMapper.class);
User user = mapper.getUserById(1);
System.out.println(user);
sqlSession.close();
}
package com.tan00xu.dao;
import com.tan00xu.pojo.User;
import java.util.List;
public interface UserMapper {
/**
* 查询全部用户
* @return
*/
public List<User> listUsers();
/**
* 根据id查询
* @param id
* @return User
*/
User getUserById(int id);
/**
* 插入一个用户
* @param user
* @return
*/
int insertUser(User user);
/**
* 修改用户
* @param user
* @return
*/
int updateUser(User user);
/**
* 删除一个用户
* @param id
* @return
*/
int deleteUser(int id);
}
DOCTYPE mapper
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.tan00xu.dao.UserMapper">
<select id="listUsers" resultType="com.tan00xu.pojo.User">
select *
from user;
select>
<select id="getUserById" parameterType="int" resultType="com.tan00xu.pojo.User">
select *
from mybatis.user
where id = #{id};
select>
<insert id="insertUser" parameterType="com.tan00xu.pojo.User">
insert into mybatis.user (id, account, password)
VALUES (#{id}, #{account}, #{password});
insert>
<update id="updateUser" parameterType="com.tan00xu.pojo.User">
update mybatis.user
set account = #{account},
password = #{password}
where id = #{id};
update>
<delete id="deleteUser" parameterType="int">
delete
from mybatis.user
where id = #{id};
delete>
mapper>
package com.tan00xu.dao;
import com.tan00xu.pojo.User;
import com.tan00xu.utils.MybatisUtils;
import org.apache.ibatis.session.SqlSession;
import org.junit.Test;
import java.util.List;
public class UserMapperTest {
@Test
public void testListUsers(){
//第一步:获得SqlSession对象
SqlSession sqlSession = MybatisUtils.getSqlSession();
//执行SQL
UserMapper userMapper = sqlSession.getMapper(UserMapper.class);
List<User> userList = userMapper.listUsers();
//不推荐使用
//List userList = sqlSession.selectList("com.tan00xu.dao.UserDao.listUsers");
for (User user : userList) {
System.out.println(user);
}
//关闭SqlSession
sqlSession.close();
}
@Test
public void testGetUserById() {
SqlSession sqlSession = MybatisUtils.getSqlSession();
UserMapper mapper = sqlSession.getMapper(UserMapper.class);
User user = mapper.getUserById(1);
System.out.println(user);
sqlSession.close();
}
//增删改需要提交事务
@Test
public void testInsertUser() {
SqlSession sqlSession = MybatisUtils.getSqlSession();
UserMapper mapper = sqlSession.getMapper(UserMapper.class);
mapper.insertUser(new User(null,"嘿嘿","123123"));
//提交事务
sqlSession.commit();
sqlSession.close();
}
@Test
public void testUpdateUser() {
SqlSession sqlSession = MybatisUtils.getSqlSession();
UserMapper mapper = sqlSession.getMapper(UserMapper.class);
mapper.updateUser(new User(8,"呵呵","666666"));
sqlSession.commit();
sqlSession.close();
}
@Test
public void testDeleteUser() {
SqlSession sqlSession = MybatisUtils.getSqlSession();
UserMapper mapper = sqlSession.getMapper(UserMapper.class);
mapper.deleteUser(8);
sqlSession.commit();
sqlSession.close();
}
}
//map传参
int insertUser2(Map<String,Object> map);
<insert id="insertUser2" parameterType="map">
insert into mybatis.user (id, account, password)
VALUES (#{userId},#{userName},#{userPassword});
insert>
@Test
public void testInsertUser2() {
SqlSession sqlSession = MybatisUtils.getSqlSession();
UserMapper mapper = sqlSession.getMapper(UserMapper.class);
Map<String, Object> map = new HashMap<String, Object>();
map.put("userId",5);
map.put("userPassword","55555");
mapper.insertUser2(map);
//提交事务
sqlSession.commit();
sqlSession.close();
}
Java代码执行时传递通配符
List<User> userList = mapper.getUserLike("%李%");
在SQL拼接时使用通配符
select * from mybatis.user where name like "%"#{value}"%";
MyBatis可以配置成适应多种环境
**不过要记住:尽管可以配置多个环境,但每个SqlSessionFactory实例只能选择一种环境。 **
事务管理器(transactionManager):
在 MyBatis 中有两种类型的事务管理器(也就是 type=“[JDBC
| MANAGED
]”):
JDBC – 这个配置直接使用了 JDBC 的提交和回滚设施,它依赖从数据源获得的连接来管理事务作用域。
MANAGED – 这个配置几乎没做什么。它从不提交或回滚一个连接,而是让容器来管理事务的整个生命周期(比如 JEE 应用服务器的上下文)。 默认情况下它会关闭连接。然而一些容器并不希望连接被关闭,因此需要将 closeConnection 属性设置为 false 来阻止默认的关闭行为。例如:
<transactionManager type="MANAGED">
<property name="closeConnection" value="false"/>
transactionManager>
数据源(dataSource):
dataSource 元素使用标准的 JDBC 数据源接口来配置 JDBC 连接对象的资源。
有三种内建的数据源类型(也就是 type=“[UNPOOLED
| POOLED
| JNDI
]”):
Mybatis默认的事务管理器就是JDBC,默认连接池: POOLED
我们可以通过properties属性类实现引用配置文件
这些属性可以在外部进行配置,并可以进行动态替换。你既可以在典型的 Java 属性文件中配置这些属性,也可以在 properties 元素的子元素中设置。【db.properties】
username = root
password = 123123
driver = com.mysql.cj.jdbc.Driver
#url = jdbc:mysql://localhost:3306/mybatis
url = jdbc:mysql://localhost:3306/mybatis?serverTimezone=UTC&useSSL=true&useUnicode=true&characterEncoding=UTF8
<properties resource="db.properties">properties>
或
<properties resource="db.properties">
<property name="driver" value="com.mysql.cj.jdbc.Driver"/>
<property name="url" value="jdbc:mysql://localhost:3306/mybatis"/>
<property name="username" value="root"/>
<property name="password" value="123123"/>
properties>
**类型别名可为 Java 类型设置一个缩写名字。 **
它仅用于 XML 配置,意在降低冗余的全限定类名书写。
<typeAliases>
<typeAlias type="com.tan00xu.pojo.User" alias="User">typeAlias>
typeAliases>
扫描实体类的包,在没有注解的情况下,会使用 这个类的类名的首字母小写的非限定类名来作为它的别名。
<typeAliases>
<package name="com.tan00xu.pojo.User"/>
typeAliases>
比如com.tan00xu.User
的别名为user
。
若有注解,则别名为其注解值:
@Alias("author")
public class Author {
...
}
这是 MyBatis 中极为重要的调整设置,它们会改变 MyBatis 的运行时行为。
部分设置:
设置名 | 描述 | 有效值 | 默认值 |
---|---|---|---|
cacheEnabled | 全局性地开启或关闭所有映射器配置文件中已配置的任何缓存。 | true | false | true |
lazyLoadingEnabled | 延迟加载的全局开关。当开启时,所有关联对象都会延迟加载。 特定关联关系中可通过设置 fetchType 属性来覆盖该项的开关状态。 |
true | false | false |
useColumnLabel | 使用列标签代替列名。实际表现依赖于数据库驱动,具体可参考数据库驱动的相关文档,或通过对比测试来观察。 | true | false | true |
useGeneratedKeys | 允许 JDBC 支持自动生成主键,需要数据库驱动支持。如果设置为 true,将强制使用自动生成主键。尽管一些数据库驱动不支持此特性,但仍可正常工作(如 Derby)。 | true | false | false |
mapUnderscoreToCamelCase | 是否开启驼峰命名自动映射,即从经典数据库列名 A_COLUMN 映射到经典 Java 属性名 aColumn。 | true | false | false |
logImpl | 指定 MyBatis 所用日志的具体实现,未指定时将自动查找。 | SLF4J | LOG4J(deprecated since 3.5.9) | LOG4J2 | JDK_LOGGING | COMMONS_LOGGING | STDOUT_LOGGING | NO_LOGGING | 未设置 |
一个配置完整的 settings 元素的示例如下:
<settings>
<setting name="cacheEnabled" value="true"/>
<setting name="lazyLoadingEnabled" value="true"/>
<setting name="multipleResultSetsEnabled" value="true"/>
<setting name="useColumnLabel" value="true"/>
<setting name="useGeneratedKeys" value="false"/>
<setting name="autoMappingBehavior" value="PARTIAL"/>
<setting name="autoMappingUnknownColumnBehavior" value="WARNING"/>
<setting name="defaultExecutorType" value="SIMPLE"/>
<setting name="defaultStatementTimeout" value="25"/>
<setting name="defaultFetchSize" value="100"/>
<setting name="safeRowBoundsEnabled" value="false"/>
<setting name="mapUnderscoreToCamelCase" value="false"/>
<setting name="localCacheScope" value="SESSION"/>
<setting name="jdbcTypeForNull" value="OTHER"/>
<setting name="lazyLoadTriggerMethods" value="equals,clone,hashCode,toString"/>
settings>
MapperRegistry:注册邦迪Mapper文件
<mappers>
<mapper resource="com/tan00xu/dao/UserMapper.xml"/>
mappers>
<mappers>
<mapper class="com.tan00xu.dao.UserMapper">mapper>
mappers>
注意点:
<mappers>
<package name="com.tan00xu.dao"/>
mappers>
注意点:
生命周期,和作用域,是至关重要的,因为错识的使用会导致非常严重的并发问题。
[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-F7YMW2zD-1647867789831)(…/NotesImg/image-20220317213628273.png)]
SqlSessionFactoryBuilder
SqlSessionFactory
SqlSession
select id, name, pwd as password
from mybatis.user
where id = #{id};
resultMap结果集映射
<resultMap id="UserMap" type="user">
<result column="id" property="id"/>
<result column="account" property="account"/>
<result column="pwd" property="password"/>
resultMap>
<select id="getuserById" resultMap="UserMap">
select *
from mybatis.user
where id = #{id}
select>
resultMap
元素是 MyBatis 中最重要最强大的元素如果一个数据库操作,出现了异常,我们需要排错。日志就是最好的助手!
曾经: sout,debug
现在:日志工厂!
logImpl | 指定 MyBatis 所用日志的具体实现,未指定时将自动查找。 | SLF4J | LOG4J(deprecated since 3.5.9) | LOG4J2 | JDK_LOGGING | COMMONS_LOGGING | STDOUT_LOGGING | NO_LOGGING | 未设置 |
---|
SLF4J
LOG4J【掌握】
LOG4J2
JDK_LOGGING
COMMONS_LOGGING
STDOUT_LOGGING【掌握】
NO_LOGGING
在Mybatis核心配置文件中,配置日志
<settings>
<setting name="logImpl" value="STDOUT_LOGGING"/>
settings>
什么是Log4j?
Log4j是Apache的一个开源项目,通过使用Log4j,我们可以控制日志信息输送的目的地是控制台、文件、GUI组件
我们可以控制每一条日志的输出格式
通过定义每一条日志信息的级别,我们能够更加细致地控制日志的生成过程
可以通过一个配置文件来灵活地进行配置,而不需要修改应用的代码
<dependency>
<groupId>log4jgroupId>
<artifactId>log4jartifactId>
<version>1.2.17version>
dependency>
#将等级为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/log.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 HH:mm:ss}][%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
<settings>
<setting name="logImpl" value="LOG4J"/>
settings>
在要使用Log4j的类中,导入包import org.apache.log4j.Logger;
日志对象,参数为当前类的class
static Logger logger = Logger.getLogger(Class.class);
日志级别
logger.info("");
logger.debug("");
logger.error("");
目的:减少数据量的处理
-- 语法:
select * from table_name limit startIndex,pageSize;
接口
//分页
List<User> listUsersByLimit(Map<String,Integer> map);
Mapper.xml
<select id="listUsersByLimit" parameterType="map" resultType="user">
select *
from mybatis.user
limit #{startIndex},#{pageSize}
select>
测试
@Test
public void testListUsersByLimit() {
SqlSession sqlSession = MybatisUtils.getSqlSession();
UserMapper mapper = sqlSession.getMapper(UserMapper.class);
HashMap<String, Integer> map = new HashMap<>();
map.put("startIndex",0);
map.put("pageSize",3);
List<User> userList = mapper.listUsersByLimit(map);
for (User user : userList) {
System.out.println(user);
}
sqlSession.close();
}
不使用SQL实现分页
接口
//分页
List<User> listUsersByRowBounds(Map<String,Integer> map);
Mapper.xml
<select id="listUsersByRowBounds" resultType="user">
select * from user
select>
测试
@Test
public void testListUsersByRowBounds() {
SqlSession sqlSession = MybatisUtils.getSqlSession();
//RowBounds实现
RowBounds rowBounds = new RowBounds(1, 2);
//通过JAVA代码层面实现分页
List<User> userList = sqlSession.selectList("com.tan00xu.dao.UserMapper.listUsersByRowBounds",null,rowBounds);
for (User user : userList) {
System.out.println(user);
}
sqlSession.close();
}
MyBatis 分页插件 PageHelper
大家之前都学过面向对象编程,也学习过接口,但在真正的开发中,很多时候我们会选择面向接口编程。
根本原因:解耦合、可拓展、提高复用,分层开发中,上层不用管具体的实现,大家都道守共同的标准,使得开发变得容易,规范性更好。
在一个面向对象的系统中,系统的各种功能是由许许多多的不同对象协作完成的。在这种情况下,各个对象内部是如何实现自己的,对系统设计人员来讲就不那么重要了。
而各个对象之间的协作关系则成为系统设计的关键。小到不同类之间的通信,大到各模块之间的交互,在系统设计之初都是要着重考虑的,这也是系统设计的主要工作内容。面向接口编程就是指按照这种思想来编程。
@Select("select * from mybatis.user")
public List<User> listUsers();
<mappers>
<mapper class="com.tan00xu.dao.UserMapper"/>
mappers>
当数据库字段名与实体类对应的属性名不一致时,可以使用@Results映射来将其对应起来。column为数据库字段名,porperty为实体类属性名,jdbcType为数据库字段数据类型,id为是否为主键。
@Data
public class Student {
private int id;
private String name;
private Teacher teacher;
}
@Data
public class Teacher {
private int id;
private String name;
}
@Select("select * from student")
@Results({
@Result(id = true, property = "id", column = "id"),
@Result(property="name", column="name"),
@Result(property="tid", column="tid"),
@Result(property = "teacher", column = "tid",one = @One(select = "com.tan00xu.dao.TeacherMapper.getTeacherById")),
})
List<Student> listStudents();
@Select("select * from teacher where id = #{id}")
Teacher getTeacherById(Integer id);
@Data
public class Student {
private int id;
private String name;
private int tid;
}
@Data
public class Teacher {
private int id;
private String name;
//一个老师多个学生
private List<Student> students;
}
//根据tid查询学生信息
@Select("select * from student where tid = #{tid}")
List<Student> listStudentsByTeacherId(Integer tid);
@Select("select * from teacher where id = #{id}")
@Results({
@Result(id= true, property = "id", column = "id"),
@Result(property = "name", column = "name"),
@Result(property = "students",column = "id",javaType = List.class,many = @Many(select = "com.tan00xu.dao.StudentMapper.listStudentsByTeacherId"))
})
Teacher getTeacherById(Integer id);
我们可以在工具类创建的时候实现自动提交事务!
sqlSessionFactory.openSession(true);
编写接口
@Select("select * from mybatis.user")
public List<User> listUsers();
//方法存在多个参数,所有的参数前面必须加上@Param()注解
@Select("select * from user where id = #{id}")
User getUserById(@Param("id") int id);
@Insert("insert into user(id, account, password) values (#{id},#{account},#{password})")
int insertUser(User user);
@Update("update user set account=#{account},password=#{password} where id=#{id}")
int updateUser(User user);
@Delete("delete from user where id=#{id}")
int deleteUser(int id);
==注意:==必须将接口绑定到核心配置文件中
<mappers>
<mapper class="com.tan00xu.dao.UserMapper"/>
mappers>
#{}表示一个占位符号
${}表示拼接 sql 串
#{}是预编译处理,${}是字符串替换。
Mybatis 在处理#{}时,会将 sql 中的#{}替换为?号,调用 PreparedStatement 的 set 方法来赋值
Mybatis 在处理 时 , 就 是 把 {}时,就是把 时,就是把{}替换成变量的值
使用#{}可以有效的防止 SQL 注入,提高系统安全性。
<select id="getStudent" resultMap="StudentTeacher">
select * from student;
select>
<resultMap id="StudentTeacher" type="Student">
<result property="id" column="id"/>
<result property="name" column="name"/>
<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.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 property="name" column="sname"/>
<association property="teacher" javaType="Teacher">
<result property="id" column="tid"/>
<result property="name" column="tname"/>
association>
resultMap>
实体类
public class Teacher {
private int id;
private String name;
//一个老师等多个学生
private List<Student> students;
}
public class Student {
private int id;
private String name;
private int tid;
}
<select id="getTeacher" resultMap="TeacherStudent">
select s.id sid, s.name sname,t.name tname, t.id tid
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 property="name" column="tname"/>
<collection property="students" ofType="student">
<result property="id" column="sid"/>
<result property="name" column="sname"/>
<result property="tid" column="tid"/>
collection>
resultMap>
<select id="getTeacher" resultMap="TeacherStudent">
select * from teacher where id = #{tid}
select>
<resultMap id="TeacherStudent" type="teacher">
<result property="id" column="id"/>
<result property="name" column="name"/>
<collection property="students" javaType="ArrayList" ofType="student" select="getStudentByTeacherId" column="id"/>
resultMap>
<select id="getStudentByTeacherId" resultType="student">
select * from student where tid = #{tid}
select>
动态SQL就是指根据不同的条件生成不同的SQL语句
动态SQL元素和JSTL或基于类似XML的文本处理器相似。在MyBatis之前的版本中,有很多元素需要花时间,了解。MyBatis 3大大精简了元素种类,现在只需学习原来一半的元素便可。MyBatis采用功能强大的基于OGNL的表达式来淘汰其它大部分元素。
if
choose (when, otherwise)
trim (where, set)
foreach
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
@Data
public class Blog {
private int id;
private String title;
private String author;
private Date createTime;
private int views;
}
这条语句提供了可选的查找文本功能。
List<Blog> selectBlogIF(Map map);
<select id="selectBlogIF" parameterType="map" resultType="com.tan00xu.pojo.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 testSelectBlogIF() {
SqlSession sqlSession = MybatisUtils.getSqlSession();
BlogMapper mapper = sqlSession.getMapper(BlogMapper.class);
HashMap map = new HashMap();
map.put("title","Java");
map.put("author","狂神说");
mapper.selectBlogIF(map).forEach(System.out::println);
sqlSession.close();
}
有时候,我们不想使用所有的条件,而只是想从多个条件中选择一个使用。针对这种情况,MyBatis 提供了 choose 元素,它有点像 Java 中的 switch 语句
when == case : beark;
otherwise == default
<select id="selectBlogChoose" 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>
where 元素只会在子元素返回任何内容的情况下才插入 “WHERE” 子句。而且,若子句的开头为 “AND” 或 “OR”,where 元素也会将它们去除。
set 元素会动态地在行首插入 SET 关键字,并会删掉额外的逗号(这些逗号是在使用条件语句给列赋值时引入的)。
<update id="updateBlog" parameterType="map">
update mybatis.blog
<set>
<if test="title!=null">
title =#{title},
if>
<if test="author!=null">
and author=#{author}
if>
set>
where id=#{id}
update>
<trim prefix="" prefixOverrides="" suffix="" suffixOverrides="">trim>
where 元素只会在子元素返回任何内容的情况下才插入 “WHERE” 子句。而且,若子句的开头为 “AND” 或 “OR”,where 元素也会将它们去除。如果 where 元素与你期望的不太一样,你也可以通过自定义 trim 元素来定制 where 元素的功能。比如,和 where 元素等价的自定义 trim 元素为:
<trim prefix="WHERE" prefixOverrides="AND |OR ">
...
trim>
prefixOverrides 属性会忽略通过管道符分隔的文本序列(注意此例中的空格是必要的)。上述例子会移除所有 prefixOverrides 属性中指定的内容,并且插入 prefix 属性中指定的内容。
用于动态更新语句的类似解决方案叫做 set。set 元素可以用于动态包含需要更新的列,忽略其它不更新的列。比如:
<update id="updateAuthorIfNecessary">
update Author
<set>
<if test="username != null">username=#{username},if>
<if test="password != null">password=#{password},if>
<if test="email != null">email=#{email},if>
<if test="bio != null">bio=#{bio}if>
set>
where id=#{id}
update>
这个例子中,set 元素会动态地在行首插入 SET 关键字,并会删掉额外的逗号(这些逗号是在使用条件语句给列赋值时引入的)。
来看看与 set 元素等价的自定义 trim 元素吧:
<trim prefix="SET" suffixOverrides=",">
...
trim>
注意,我们覆盖了后缀值设置,并且自定义了前缀值。
所谓的动态SQL,本质还是SQL语句,只是我们可以在SQL层面,去执行一个逻辑代码
有的时候,我们可能会将一些功能的部分抽取出来,方便复用!
使用SQL标签抽取公共的部分
<sql id="if-title-author">
<if test="title!=null">
and title =#{title}
if>
<if test="author!=null">
and author=#{author}
if>
sql>
在需要使用的地方使用Include标签引用即可
<select id="selectBlogIF" parameterType="map" resultType="com.tan00xu.pojo.Blog">
select * from mybatis.blog
<where>
<include refid="if-title-author">include>
where>
select>
动态 SQL 的另一个常见使用场景是对集合进行遍历(尤其是在构建 IN 条件语句的时候)。
foreach 元素的功能非常强大,它允许你指定一个集合,声明可以在元素体内使用的集合项(item)和索引(index)变量。它也允许你指定开头与结尾的字符串以及集合项迭代之间的分隔符,这个元素也不会错误地添加多余的分隔符。
提示 :
迭代对象:collection=""
开始:open=""
结束:close=""
分隔符:separator=""
//查询1,2,3号博客
List<Blog> selectBlogForEach(Map map);
<select id="selectBlogForEach" parameterType="map" resultType="com.tan00xu.pojo.Blog">
select * from blog
<where>
<foreach collection="ids" item="id" open="and (" close=")" separator="or">
id = #{id}
foreach>
where>
select>
@Test
public void testSelectBlogForEach() {
SqlSession sqlSession = MybatisUtils.getSqlSession();
BlogMapper mapper = sqlSession.getMapper(BlogMapper.class);
HashMap map = new HashMap();
ArrayList<Integer> ids = new ArrayList<>();
ids.add(1);
ids.add(2);
map.put("ids",ids);
mapper.selectBlogForEach(map).forEach(System.out::println);
sqlSession.close();
}
动态SQL就是在拼接SQL语句,我们只要保证SQL的正确性,按照SQL的格式,去排列组合就可以了
一级缓存也叫本地缓存:
一级缓存默认是开启的,只在一次SqlSession中有效,也就是拿到连接到关闭连接这个区间
查询不同的东西
增删改操作,可能会改变原来的数据,所以必定会刷新缓存!
查询不同的Mapper.xml
手动清理缓存。sqlSession.clearCache();
步骤:
<setting name="cacheEnabled" value="true"/>
在要使用二级缓存的Mapper中开启
<cache/>
也可以自定义一些参数
<cache eviction="FIFO"
flushInterval="60000"
size="512"
readOnly="true"/>
测试
问题:我们需要将实体类序列化!class implements Serializable
否则就会报错!
Caused by : java.io.NotserializableException
小结:
[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-6SlfpdhL-1647867789833)(…/NotesImg/image-20220321190812512.png)]
12.6、自定义缓存 ehcache
**Ehcache是一种广泛使用的开源Java分布式缓存。主要面向通用缓存 **
一级缓存也叫本地缓存:
一级缓存默认是开启的,只在一次SqlSession中有效,也就是拿到连接到关闭连接这个区间
查询不同的东西
增删改操作,可能会改变原来的数据,所以必定会刷新缓存!
查询不同的Mapper.xml
手动清理缓存。sqlSession.clearCache();
步骤:
<setting name="cacheEnabled" value="true"/>
在要使用二级缓存的Mapper中开启
<cache/>
也可以自定义一些参数
<cache eviction="FIFO"
flushInterval="60000"
size="512"
readOnly="true"/>
测试
问题:我们需要将实体类序列化!class implements Serializable
否则就会报错!
Caused by : java.io.NotserializableException
小结:
12.6、自定义缓存 ehcache
Ehcache是一种广泛使用的开源Java分布式缓存。主要面向通用缓存