MyBatis学习笔记
Mybatis
1、简介
1.1、什么是MyBatis
- MyBatis 是一款优秀的持久层框架
- 它支持自定义 SQL、存储过程以及高级映射
- MyBatis 免除了几乎所有的 JDBC 代码以及设置参数和获取结果集的工作。
- MyBatis 可以通过简单的 XML 或注解来配置和映射原始类型、接口和 Java POJO(Plain Old Java Objects,普通老式 Java 对象)为数据库中的记录。
1.2、持久化
数据持久化
- 持久化就是将程序的数据在持久状态(放在数据库中,只要数据库不删库就一直存在)和瞬时状态
- 内存:断电即失
为什么需要持久化?
- 有一些对象,不能让他丢掉
- 内存太贵了
1.3、持久层
Dao层、Service层、Controller层...
- 完成持久化工作的代码块
- 层界限十分明显
1.4、为什么需要Mybatis
- 方便
- 帮助程序员将数据存到数据库
- 传统的JDBC代码太复杂,简化代码。框架。自动化
- 不用Mybatis框架也可以。但是更容易上手。
- 优点:
- 简单易学:本身就很小且简单。没有任何第三方依赖,最简单安装只要两个jar文件+配置几个sql映射文件易于学习,易于使用,通过文档和源代码,可以比较完全的掌握它的设计思路和实现。
- 灵活:mybatis不会对应用程序或者数据库的现有设计强加任何影响。 sql写在xml里,便于统一管理和优化。通过sql语句可以满足操作数据库的所有需求。
- 解除sql与程序代码的耦合:通过提供DAO层,将业务逻辑和数据访问逻辑分离,使系统的设计更清晰,更易维护,更易单元测试。sql和代码的分离,提高了可维护性。
- 提供映射标签,支持对象与数据库的orm字段关系映射
- 提供对象关系映射标签,支持对象关系组建维护
- 提供xml标签,支持编写动态sql。
2、第一个Mybatis程序
2.1、搭建环境
搭建数据库
create 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,'gmt','123456'),
(2,'cyn','123456'),
(3,'pig','123456')
新建项目:
- 新建一个普通的Maven项目
- 删除src目录
- 导入junit、mybatis、mysql依赖
<!--导入依赖-->
<dependencies>
<!--mysql驱动-->
<!-- https://mvnrepository.com/artifact/mysql/mysql-connector-java -->
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>8.0.23</version>
</dependency>
<!--mybatis-->
<!-- https://mvnrepository.com/artifact/org.mybatis/mybatis -->
<dependency>
<groupId>org.mybatis</groupId>
<artifactId>mybatis</artifactId>
<version>3.5.6</version>
</dependency>
<!--junit-->
<!-- https://mvnrepository.com/artifact/junit/junit -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13.2</version>
<scope>test</scope>
</dependency>
</dependencies>
2.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核心配置文件-->
<configuration>
<!--default默认的环境-->
<environments default="development">
<environment id="development">
<!--transactionManager事务管理-->
<transactionManager type="JDBC"/>
<dataSource type="POOLED">
<property name="driver" value="com.mysql.jdbc.Driver"/>
<property name="url" value="jdbc:mysql://121.196.100.240:3306/mybatis?useSSL=true&useUnicode=true&characterEncoding=UTF-8"/>
<property name="username" value="mybatis"/>
<property name="password" value="123456"/>
</dataSource>
</environment>
</environments>
</configuration>
- 编写Mybatis工具类
public class MybatisUtils {
private static SqlSessionFactory sqlSessionFactory;
static{
// 使用Mybatis第一步:获取sqlSessionFactory对象
String resource = "mybatis-config.xml";
try {
InputStream inputStream = Resources.getResourceAsStream(resource);
SqlSessionFactory sqlSessionFactory = new SqlSessionFactoryBuilder().build(inputStream);
} catch (IOException e) {
e.printStackTrace();
}
}
//既然有了 SqlSessionFactory,顾名思义,我们可以从中获得 SqlSession 的实例。
//SqlSession 提供了在数据库执行 SQL 命令所需的所有方法。你可以通过 SqlSession 实例来直接执行已映射的 SQL 语句。
public static SqlSession getSqlSession(){
return sqlSessionFactory.openSession();
}
}
2.3、编写代码
- 实体类
package com.gmt.pojo;
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();
}
- 接口实现类 : 由原来的UserDaoImpl(java)转变成一个Mapper配置文件(xml)
<?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.gmt.dao.UserDao">
<select id="getUserList" resultType="com.gmt.pojo.User">
select * from `user`
</select>
</mapper>
2.4、测试
MapperRegistry是什么?
- junit测试
@Test
public void test(){
// 第一步 获取SqlSession
SqlSession sqlSession = MybatisUtils.getSqlSession();
// 方式一 执行SQL
UserDao mapper = sqlSession.getMapper(UserDao.class);
List<User> userList = mapper.getUserList();
for (User user : userList) {
System.out.println(user);
}
// 关闭SqlSession
sqlSession.close();
}
3、CRUD
1、namespace
namespace中的包名要和Dao/Mapper接口的包名一致。
<mapper namespace="com.gmt.dao.UserDao"> <mapper>
步骤:
- 编写接口
- 编写对应的mapper中的sql语句
- 测试
注意增删改之后一定要提交事务 commit();
2、select
选择查询语句:
- id:就是对应的namespace中的方法名
- resultType:sql语句执行的返回值类型。
- parameterType:方法的参数类型
1、编写接口
// 根据id查用户User getById(int id);
2、编写对应的mapper中的sql语句
<select id="getById" parameterType="int" resultType="com.gmt.pojo.User" > select * from mybatis.`user` where id = #{id}</select>
3、测试
@Testpublic void TestGetById(){ SqlSession sqlSession = MybatisUtils.getSqlSession(); UserDao mapper = sqlSession.getMapper(UserDao.class); User byId = mapper.getById(2); System.out.println(byId); sqlSession.close();}
3、insert
<!--对象中的属性可以直接取出来--><insert id="insertUser" parameterType="com.gmt.pojo.User" > insert into mybatis.user(id,name ,pwd) values(#{id},#{name},#{pwd})</insert>
4、update
<update id="updateUser" parameterType="com.gmt.pojo.User"> update mybatis.user set name = #{name}, pwd = #{pwd} where id = #{id}</update>
5、delete
<delete id="deleteUser" parameterType="int"> delete from mybatis.user where id = #{id};</delete>
6、万能的map
int insertUser2(Map<String ,Object> map);
<insert id="insertUser2" parameterType="map" > insert into mybatis.user(id,name ,pwd) values(#{userid},#{username},#{userpwd})</insert>
@Testpublic void TestInsertUser2(){ SqlSession sqlSession = MybatisUtils.getSqlSession(); UserDao mapper = sqlSession.getMapper(UserDao.class); Map<String, Object> map = new HashMap<>(); map.put("username","hello"); map.put("userpwd","333333"); map.put("userid",6); mapper.insertUser2(map); // 提交事务 sqlSession.commit(); sqlSession.close();}
-
Map传递参数,直接在sql中取出key即可。parameterType="map"
-
对象传递参数,直接在sql中取对象的属性即可。parameterType="object"
-
只有一个基本类型参数的情况下,可以在sql中直接取到。
-
多个参数用Map或者注解
7、模糊查询
// 模糊查询List<User> getUserLike(String value);
- Java代码执行的时候,传递通配符%%
<select id="getUserLike" parameterType="String" resultType="com.gmt.pojo.User" > select * from mybatis.`user` where name like #{value};</select>
@Testpublic void TestGetUserLike(){ 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();}
这样做会有一个缺点,如果你传入的字符串是 1 or 1=1,这样的话会把所有的信息输出。所以建议直接在sql中写死。
- 在sql拼接中使用通配符
<select id="getUserLike" parameterType="String" resultType="com.gmt.pojo.User" > select * from mybatis.`user` where name like "%"#{value}"%";</select>
@Testpublic void TestGetUserLike(){ 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();}
4、配置解析
1、核心配置文件
- mybatis-config.xml
- MyBatis 的配置文件包含了会深深影响 MyBatis 行为的设置和属性信息。 配置文档的顶层结构如下:
- configuration(配置)
- properties(属性)
- settings(设置)
- typeAliases(类型别名)
- typeHandlers(类型处理器)
- objectFactory(对象工厂)
- plugins(插件)
- environments(环境配置)
- environment(环境变量)
- transactionManager(事务管理器)
- dataSource(数据源)
- environment(环境变量)
- databaseIdProvider(数据库厂商标识)
- mappers(映射器)
2、环境配置(environments)
Mybatis可以配置适应多种环境。
不过要记住:尽管可以配置多个环境,但每个 SqlSessionFactory 实例只能选择一种环境。
Mybatis默认的事务管理器就是JDBC,连接池:POOLED
3、属性(properties)
我们可以通过properties来实现引用配置文件。
这些属性可以在外部进行配置,并可以进行动态替换。你既可以在典型的 Java 属性文件中配置这些属性,也可以在 properties 元素的子元素中设置。【db.properties】
编写一个配置文件
db.properties
driver = com.mysql.cj.jdbc.Driverurl = jdbc:mysql://121.196.100.240:3306/mybatis?useSSL=true&useUnicode=true&characterEncoding=UTF-8username = mybatispassword = 123456
在核心配置文件中引用
<!--引入外部配置文件--><properties resource="db.properties"> <property name="username" value="mybatis"/> <property name="password" value="123456"/></properties>
- 可以直接引入外部文件
- 可以在其中增加一些属性配置
- 如果两个文件有同一个字段,优先使用外部配置文件的!
4、类型别名(typeAliases)
- 类型别名可为 Java 类型设置一个缩写名字。
- 意在降低冗余的全限定类名书写
<!--可以给实体类起别名--><typeAliases> <typeAlias type="com.gmt.pojo.User" alias="User"></typeAlias></typeAliases>
也可以制定一个包名,Mybatis会在包名下面搜索需要的JavaBean,比如:
扫描实体类的包,他的默认别名就为这个类的类名,首字母小写(大写也可)。
<typeAliases> <package name="com.gmt.pojo"/></typeAliases>
在实体类比较少的时候,使用第一种方式。
如果实体类比较多,建议使用第二种方式。
第一种可以自定义别名,第二种则不行,但是可以通过在实体类前加Alias注解实现起别名。
@Alias("user")public class User {}
5、设置(settings)
这是 MyBatis 中极为重要的调整设置,它们会改变 MyBatis 的运行时行为。
设置名 | 描述 | 有效值 | 默认值 |
---|---|---|---|
cacheEnabled | 全局性地开启或关闭所有映射器配置文件中已配置的任何缓存。 | true | false | true |
lazyLoadingEnabled | 延迟加载的全局开关。当开启时,所有关联对象都会延迟加载。 特定关联关系中可通过设置 fetchType 属性来覆盖该项的开关状态。 |
true | false | false |
logImpl | 指定 MyBatis 所用日志的具体实现,未指定时将自动查找。 | SLF4J | LOG4J | LOG4J2 | JDK_LOGGING | COMMONS_LOGGING | STDOUT_LOGGING | NO_LOGGING | 未设置 |
mapUnderscoreToCamelCase | 是否开启驼峰命名自动映射,即从经典数据库列名 A_COLUMN 映射到经典 Java 属性名 aColumn。 | true | false | False |
数据库命名大小写不敏感,所以多用下滑线
6、其他配置
- typeHandlers(类型处理器)
- objectFactory(对象工厂)
- plugins(插件)
- mybatis-generator-core
- mybatis-plus
- 通用mapper
7、映射器(mappers)
方式一:【推荐使用】
<!--每一个Mapper.xml都需要在Mybatis核心配置文件中注册--><mappers> <mapper resource="com/gmt/dao/UserMapper.xml"></mapper></mappers>
方式二:使用class文件绑定
<mappers> <mapper class="com.gmt.dao.UserMapper"></mapper></mappers>
注意点:
- 接口和它的Mapper配置文件必须同名
- 接口和它的Mapper配置文件必须在同一包下
方式三:使用扫描包进行注入绑定
<mappers> <package name="com.gmt.dao"/></mappers>
注意点:
- 接口和它的Mapper配置文件必须同名
- 接口和它的Mapper配置文件必须在同一包下
8、生命周期和作用域
不同作用域和生命周期类别是至关重要的,因为错误的使用会导致非常严重的并发问题。
SqlSessionFactoryBuilder
- 一旦创建了 SqlSessionFactory,就不再需要它了。
- 局部变量
SqlSessionFactory
- 可以想象成:数据库连接池
- SqlSessionFactory 一旦被创建就应该在应用的运行期间一直存在,没有任何理由丢弃它或重新创建另一个实例。
- 因此 SqlSessionFactory 的最佳作用域是应用作用域。
- 最简单的就是使用单例模式或者静态单例模式。
SqlSession
- 连接到连接池的一个请求
- SqlSession 的实例不是线程安全的,因此是不能被共享的,所以它的最佳的作用域是请求或方法作用域。
- 用完之后需要关闭,否则会在SqlSessionFactory中一直占用资源!
5、解决属性名和字段名不一致的问题
1、问题
public class User { private int id; private String name; private String password; // 和数据库中的pwd名字不一致}
然后查询出现问题:pwd查询结果为null
User{id=1, name='gmt', password='null'}
// select * from mybatis.`user` where id = #{id}// 类型处理器// select id,name,pwd from mybatis.`user` where id = #{id}
2、ResultMap
- 起别名:
<select id="getById" parameterType="int" resultType="user" > select id,name,pwd as password from mybatis.`user` where id = #{id}</select>
- ResultMap:结果集映射,数据库中的字段名和实体类中的属性名一一对应
<resultMap id="UserMap" type="User"> <!--column数据库中的字段,property实体类中的属性--> <result column="id" property="id"></result> <result column="name" property="name"></result> <result column="pwd" property="password"></result></resultMap><select id="getById" parameterType="int" resultMap="UserMap"> select id,name,pwd from mybatis.`user` where id = #{id}</select>
resultMap
元素是 MyBatis 中最重要最强大的元素。- ResultMap 的设计思想是,对简单的语句做到零配置,对于复杂一点的语句,只需要描述语句之间的关系就行了。
- MyBatis 会在幕后自动创建一个
ResultMap
,再根据属性名来映射列到 JavaBean 的属性上。
6、日志
6.1、日志工厂
设置名 | 描述 | 有效值 | 默认值 |
---|---|---|---|
logImpl | 指定 MyBatis 所用日志的具体实现,未指定时将自动查找。 | SLF4J | LOG4J | LOG4J2 | JDK_LOGGING | COMMONS_LOGGING | STDOUT_LOGGING | NO_LOGGING | 未设置 |
如果一个数据库操作出现了异常,我们需要排错。日志就是最好的帮手!
- SLF4J
- LOG4J 【掌握】
- LOG4J2
- JDK_LOGGING
- COMMONS_LOGGING
- STDOUT_LOGGING【掌握】
- NO_LOGGING
STDOUT_LOGGING 标准日志输出
<settings> <setting name="logImpl" value="STDOUT_LOGGING"/></settings>
输出:
Opening JDBC ConnectionCreated connection 1424698224.Setting autocommit to false on JDBC Connection [com.mysql.cj.jdbc.ConnectionImpl@54eb2b70]==> Preparing: select id,name,pwd from mybatis.`user` where id = ?==> Parameters: 1(Integer)<== Columns: id, name, pwd<== Row: 1, gmt, 123456<== Total: 1User{id=1, name='gmt', password='123456'}
6.2、LOG4J
什么是LOG4J?
- Log4j是Apache的一个开源项目,通过使用Log4j,我们可以控制日志信息输送的目的地是控制台、文件、GUI组件
- 我们也可以控制每一条日志的输出格式
- 通过定义每一条日志信息的级别,我们能够更加细致地控制日志的生成过程
- 通过一个配置文件来灵活地进行配置,而不需要修改应用的代码。
1.导入包
<dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-core</artifactId> <version>2.14.1</version></dependency>
2.log4j.properties
# 设置log4j.rootLogger = DEBUG,console,file# 输出信息到控制抬log4j.appender.console = org.apache.log4j.ConsoleAppenderlog4j.appender.console.Target = System.outlog4j.appender.console.layout = org.apache.log4j.PatternLayoutlog4j.appender.console.layout.ConversionPattern = [%c]-%m%n# 文件相关的配置log4j.appender.file = org.apache.log4j.DailyRollingFileAppenderlog4j.appender.file.File = /home/gmt/data/test/gmt.loglog4j.appender.file.MaxFileSize = 10mblog4j.appender.file.Threshold = DEBUG log4j.appender.file.layout = org.apache.log4j.PatternLayoutlog4j.appender.file.layout.ConversionPattern = [%p][%d{yy-MM-dd][%c]%m%n# 日志输出级别log4j.logger.org.mybatis=DEBUGlog4j.logger.java.sql = DEBUGlog4j.logger.java.sql.Statement=DEBUGlog4j.logger.java.sql.ResultSet=DEBUGlog4j.logger.java.sql.PreparedStatement=DEBUG
3.配置log4j为日志的实现
<settings> <setting name="logImpl" value="LOG4J"/></settings>
简单实用:
- 在要使用LOG4J的类中,导入包import org.apache.log4j.Logger
- 日志对象,参数为当前类的class
static Logger logger = Logger.getLogger(UserMapper.class);
- 日志级别
logger.info("info:进入了testLog4j方法");logger.debug("debug:进入了testLog4j方法");logger.error("error:进入了testLog4j方法");
7、分页
7.1、使用limit分页
语法:select * from user limit startIndex,pageSizeselect * from user limit 3; #[0,3]
使用Mybatis实现分页,核心sql
-
接口:
// 分页List<User> getUserByLimit(Map<String,Integer> map);
-
Mapper.xml
<resultMap id="UserMap" type="User"> <!--column数据库中的字段,property实体类中的属性--> <result column="pwd" property="password"></result> </resultMap><select id="getUserByLimit" parameterType="map" resultMap="UserMap"> select * from mybatis.user limit #{startIndex},#{pageSize}</select>
- 测试
@Testpublic void getUserByLimit(){ SqlSession sqlSession = MybatisUtils.getSqlSession(); UserMapper mapper = sqlSession.getMapper(UserMapper.class); HashMap<String, Integer> map = new HashMap<String, Integer>(); map.put("startIndex",2); map.put("pageSize",3); List<User> userByLimit = mapper.getUserByLimit(map); for (User user : userByLimit) { System.out.println(user); } sqlSession.close();}
7.2、RowBounds分页
不再使用SQL实现分页
- 接口
// 分页2List<User> getUserByRowBounds(Map<String ,Integer> map);
- Mapper.xml
<resultMap id="UserMap" type="User"> <!--column数据库中的字段,property实体类中的属性--> <result column="pwd" property="password"></result></resultMap><select id="getUserB yRowBounds" resultMap="UserMap"> select * from mybatis.user</select>
- 测试
@Testpublic void getUserByRowBounds(){ SqlSession sqlSession = MybatisUtils.getSqlSession(); // RowBounds实现 RowBounds rowBounds = new RowBounds(1, 2); // 通过Java代码层面实现分页 List<User> userList = sqlSession.selectList("com.gmt.dao.UserMapper.getUserByRowBounds",null,rowBounds); for (User user : userList) { System.out.println(user); } sqlSession.close();}
7.3、分页插件
PageHelper
8、使用注解开发
8.1、面向接口编程
-
根本原因:解耦,可扩展,提高复用,在分层开发中,上层不用管具体的实现,大家都遵守共同的标准,使得开发变得容易,规范性更好。
-
在一个面向对象的系统中,系统的各种功能是有许许多多的不同对象协作完成的。在这种情况下,各个对象内部是如何实现自己的,对系统设计人员来讲就不那么重要了。
-
而各个对象之间的协作关系则成为系统设计的关键。小到不同类之间的通信,大到各模块之间的交互,在系统设计之初都是要着重考虑的,这也是系统设计的最主要工作内容。面向接口编程就是指按照这种思想来编程。
关于接口的理解
-
接口从更深层次的理解,应是定义(规范,约束)与实现(名实分离的原则)的分离
-
接口的本身反应了系统设计人员对系统的抽象理解。
-
接口应有两类:
- 第一类是对一个个体的抽象,它可对应为一个抽象体(abstract class)
- 第二类是对一个个体某一方面的抽象,即形成一个抽象面(interface)
-
一个个体有可能有多个抽象面。抽象体和抽象面是有区别的
三个面向的区别
- 面向对象是指,我们考虑问题的时候,以对象为单位,考虑他的属性和方法
- 面向过程是指,我们考虑问题的时候,以一个具体的流程(事务过程)为单位,考虑他的实现
- 接口设计和非接口设计是针对复用技术的,与面向对象(过程)不是一个问题,更多的体现就是对系统整体的架构
8.2、使用注解开发
-
注解在接口上实现
@Select("select * from user")List<User> getUsers();
-
需要在核心配置文件中绑定接口
<mappers> <mapper class="com.gmt.dao.UserMapper"></mapper></mappers>
- 测试
@Testpublic 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();}
本质:反射机制
底层:动态代理
8.3、CRUD
- 在工具类创建的时候开启自动提交事务
public static SqlSession getSqlSession(){ // true 自动提交事务 return sqlSessionFactory.openSession(true);}
- 编写接口,增加注解
public interface UserMapper { // 查询全部 @Select("select * from user") List<User> getUsers(); // 按学号查询 @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 = #{id}") int deleteUser(int id);}
- 增加到核心配置文件
<!--绑定接口--><mappers> <mapper class="com.gmt.dao.UserMapper"></mapper></mappers>
- 测试类
@Testpublic 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); } User user = mapper.getUserById(2); System.out.println(user); mapper.addUser(new User(8,"lll","dfsdaf")); mapper.updateUser(new User(8,"jjj","dfasdfasd")); mapper.deleteUser(8); sqlSession.close();}
9、Lombok
lombok可以通过简单的注解的形式来帮助我们简化和消除一些必须有但显得很臃肿的Java代码,比如常见的Getter&Setter、toString()、构造函数等等。lombok不仅方便编写,同时也让我们的代码更简洁。
- 安装插件Lombok
- 导入Maven的jar包
@Getter and @Setter@FieldNameConstants@ToString@EqualsAndHashCode @AllArgsConstructor // 全参构造@RequiredArgsConstructor // 有参构造 @NoArgsConstructor //无参构造@Log, @Log4j, @Log4j2, @Slf4j, @XSlf4j, @CommonsLog, @JBossLog, @Flogger, @CustomLog @Data // get、set、equals、tostring、hashcode、无参构造@Builder@SuperBuilder@Singular@Delegate@Value@Accessors@Wither@With@SneakyThrows@val@varexperimental @var@UtilityClass
优点:
- 能通过注解的形式自动生成构造器、getter/setter、equals、hashcode、toString等方法,提高了一定的开发效率
- 让代码变得整洁,不用过多的去关注相应的方法
- 属性做修改时,也简化了维护为这些属性所生成的getter/setter方法等
缺点:
- 不支持多种参数构造的重载
- 虽然省去了手动创建getter/setter方法的麻烦,但大大降低了源代码的可读性和完整性,降低了阅读源代码的舒适度
10、多对一
10.1、测试环境搭建
create table teacher( `id` int(10) not null , `name` varchar(30) default null, primary key (`id`))engine = INNODB default charset = utf8;insert into teacher(id,name) values(1,'张三');create table student( id int(10) not null , name varchar(30) default null, tid int(10) default null, primary key (id), key FK_tid (tid), constraint FK_tid foreign key (tid) references teacher(id))engine = INNODB default charset = utf8;insert into student(id,name,tid)values (1,'李四',1),(2,'王五',1),(3,'赵六',1),(4,'陈七',1),(5,'赵八',1);
10.2、按照查询嵌套处理
<mapper namespace="com.gmt.dao.StudentMapper"> <!-- 思路: 1. 查询所有的学生信息 2. 根据查询出来的学生的id,寻找对应的老师 --> <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"></association> </resultMap> <select id="getTeacher" resultType="Teacher"> select * from teacher where id = #{id}; </select></mapper>
10.3、按照结果嵌套处理
<!--按照结果嵌套处理--><select id="getStudent2" resultMap="StudentTeacher"> select s.id sid,s.name sname,t.name tname from student s , teacher t where s.tid = t.id</select><resultMap id="StudentTeacher" type="Student"> <result property="id" column="sid"/> <result property="name" column="sname"/> <association property="teacher" javaType="Teacher"> <result property="name" column="tname"/> </association></resultMap>
11、一对多
11.1、环境搭建
@Datapublic class Teacher { private int id; private String name; // 一个老师有多个学生 private List<Student> students;}
@Datapublic class Student { private int id; private String name ; private int tid;}
11.2、按照结果嵌套处理
<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"/> <!-- javaType 获取指定属性的类型 集合中的泛型信息,我们使用ofType获取 --> <collection property="students" ofType="Student"> <result property="id" column="sid"/> <result property="name" column="sname"/> <result property="tid" column="tid"/> </collection></resultMap>
11.3、按照查询嵌套处理
<select id="getTeacher2" resultMap="TeacherStudent"> select * from teacher where id = #{tid}</select><resultMap id="TeacherStudent" type="Teacher"> <collection property="students" javaType="ArrayList" ofType="Student" select = "getStudentByTeacherId" column="id"></collection></resultMap><select id="getStudentByTeacherId" resultType="Student"> select * from student where tid = #{tid}</select>
小结
- 关联:association【多对一】
- 集合:collection【一对多】
- javaType & ofType
- javaType用来指定实体类中的属性的类型
- ofType 用来指定映射到List或者集合中pojo类型,泛型中的约束类型
12、动态SQL
什么是动态SQL:就是指根据不同的条件下生成不同的SQL语句
- if
- choose (when, otherwise)
- trim (where, set)
- foreach
1、搭建环境
create table blog( id varchar(30) 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
2、if
BlogMapper
// 查询博客List<Blog> queryBlogIF(Map map);
BlogMapper.xml
<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>
测试:
@Testpublic void queryBlogIF(){ SqlSession sqlSession = MybatisUtils.getSqlSession(); BlogMapper mapper = sqlSession.getMapper(BlogMapper.class); HashMap map = new HashMap(); map.put("title","SSM如此简单"); map.put("author","古曼童"); List<Blog> blogList = mapper.queryBlogIF(map); for (Blog blog : blogList) { System.out.println(blog); } sqlSession.close();}
3、choose、when、otherwise
有时候,我们不想使用所有的条件,而只是想从多个条件中选择一个使用。针对这种情况,MyBatis 提供了 choose 元素,它有点像 Java 中的 switch 语句。
choose 只会选择第一条满足条件的执行
<select id="queryBlogChoose" parameterType="map" resultType="Blog"> select * from blog <where> <choose> <when test="title != null"> title = #{title} </when> <when test="author != null"> author = #{author} </when> <otherwise> views = #{views} </otherwise> </choose> </where></select>
4、trim、where、set
where 元素只会在子元素返回任何内容的情况下才插入 “WHERE” 子句。而且,若子句的开头为 “AND” 或 “OR”,where 元素也会将它们去除。**
<select id="queryBlogChoose" parameterType="map" resultType="Blog"> select * from blog <where> <if test="title != null"> title = #{title} </if> <if test="author != null "> and author = #{author} </if> </where></select>
用于动态更新语句的类似解决方案叫做 set。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>
所谓动态SQL,本质还是SQL语句,只是我们可以在SQL层面,去执行一个逻辑代码
5、SQL片段
<sql id="all"> id,title,author,create_time,views;</sql><select id="selectAll" > select <include refid="all"></include> from blog</select>
- 使用SQL标签抽取公共的部分
- 在需要使用的地方使用include标签引用即可
注意事项:
- 最好基于单表来定义SQL片段
- 不要存在where和set标签
6、foreach
<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>
@Testpublic void queryBlogForEach(){ 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); List<Blog> blogs = mapper.queryBlogForEach(map); for (Blog blog : blogs) { System.out.println(blog); } sqlSession.close();}
13、缓存
13.1、简介
- 什么是缓存【cache】?
- 存在内存中的临时数据
- 将用户经常查询的数据放在缓存(内存)中,用户去查询数据就不用从磁盘上(关系型数据库数据文件)查询,从缓存中查询,从而提高查询效率,解决高并发系统的性能问题。
- 为什么使用缓存?
- 减少和数据库的交互次数,减少系统开销,提高系统效率。
- 什么样的数据能使用缓存?
- 经常查询并且不经常使用的数据。
13.2、Mybatis缓存
- Mybatis包含一个非常强大的查询缓存特性,他可以非常方便的定制和配置缓存,缓存可以极大地提升查询效率。
- Mybatis系统默认定义了两级缓存:一级缓存和二级缓存
- 默认情况下,只有一级缓存开启。(SqlSession级别的缓存,也称为本地缓存)
- 二级缓存需要手动开启和配置,它是基于namespace级别的缓存
- 为了提高扩展性,Mybatis定义了缓存接口Cache,我们可以通过实现Cache接口来自定义二级缓存
13.3、一级缓存
- 一级缓存也叫本地缓存:
- 与数据库同一次对话期间查询到的数据会放在本地缓存中。
- 以后如果需要获取相同的数据,直接从缓存中拿,没必要再去查询数据库
sqlSession.clearCache(); // 手动清理缓存
小结:Mybatis默认开启缓存,只在一次SqlSession中有效,也就是拿到连接 到 关闭连接这个区间段
13.4、二级缓存
-
二级缓存也叫全局缓存,一级缓存作用域太低了,所以诞生了二级缓存
-
基于namespace级别的缓存,一个namespace对应一个二级缓存
-
工作机制:
- 一个对话查询一条数据,这个数据就会被放在当前对话的一级缓存中
- 如果当前对话关闭了,这个对话对应的一级缓存就没了,但是我们想要的是,会话关闭了,一级缓存中的数据会被放在二级缓存中
- 新的对话查询信息,就可以从二级缓存中获取内容
- 不同的mapper查出的数据会放在自己对应的缓存map中
-
步骤:
- 开启全局缓存
<!--显示的开启全局缓存(默认是开启的)--><setting name="cacheEnabled" value="true"/>
- 在要使用二级缓存的Mapper.xml中开启
<!--eviction 清除策略--><cache eviction="FIFO" flushInterval="6000" size="1024" readOnly="true"/>
默认情况下,只启用了本地的会话缓存,它仅仅对一个会话中的数据进行缓存。 要启用全局的二级缓存,只需要在你的 SQL 映射文件中添加一行:
<cache/>
基本上就是这样。这个简单语句的效果如下:
- 映射语句文件中的所有 select 语句的结果将会被缓存。
- 映射语句文件中的所有 insert、update 和 delete 语句会刷新缓存。
- 缓存会使用最近最少使用算法(LRU, Least Recently Used)算法来清除不需要的缓存。
- 缓存不会定时进行刷新(也就是说,没有刷新间隔)。
- 缓存会保存列表或对象(无论查询方法返回哪种)的 1024 个引用。
- 缓存会被视为读/写缓存,这意味着获取到的对象并不是共享的,可以安全地被调用者修改,而不干扰其他调用者或线程所做的潜在修改。
这些属性可以通过 cache 元素的属性来修改。比如:
<cache eviction="FIFO" flushInterval="60000" size="512" readOnly="true"/>
这个更高级的配置创建了一个 FIFO 缓存,每隔 60 秒刷新,最多可以存储结果对象或列表的 512 个引用,而且返回的对象被认为是只读的,因此对它们进行修改可能会在不同线程中的调用者产生冲突。
可用的清除策略有:
LRU
– 最近最少使用:移除最长时间不被使用的对象。FIFO
– 先进先出:按对象进入缓存的顺序来移除它们。SOFT
– 软引用:基于垃圾回收器状态和软引用规则移除对象。WEAK
– 弱引用:更积极地基于垃圾收集器状态和弱引用规则移除对象。
默认的清除策略是 LRU。
flushInterval(刷新间隔)属性可以被设置为任意的正整数,设置的值应该是一个以毫秒为单位的合理时间量。 默认情况是不设置,也就是没有刷新间隔,缓存仅仅会在调用语句时刷新。
size(引用数目)属性可以被设置为任意正整数,要注意欲缓存对象的大小和运行环境中可用的内存资源。默认值是 1024。
readOnly(只读)属性可以被设置为 true 或 false。只读的缓存会给所有调用者返回缓存对象的相同实例。 因此这些对象不能被修改。这就提供了可观的性能提升。而可读写的缓存会(通过序列化)返回缓存对象的拷贝。 速度上会慢一些,但是更安全,因此默认值是 false。
提示 二级缓存是事务性的。这意味着,当 SqlSession 完成并提交时,或是完成并回滚,但没有执行 flushCache=true 的 insert/delete/update 语句时,缓存会获得更新。
小结:
- 只要开启了二级缓存,在同一个Mapper下就有效
- 所有的数据都会先放在一级缓存中
- 只有当前会话提交,或者关闭的时候,才会提交到二级缓存