数据持久化
为什么持久化?
Dao层、Service层、Controller层
帮助程序员将数据存入到数据库中
方便
传统的JDBC代码太复杂了,简化,框架,自动化
不用MyBatis也可以,技术没有高低之分
优点:
思路:搭建环境–>导入Mybatis–>编写代码–>测试
CREATE DATABASE `mybatis`;
USE `mybatis`;
DROP TABLE IF EXISTS `user`;
CREATE TABLE `user` (
`id` int(20) NOT NULL,
`name` varchar(30) DEFAULT NULL,
`pwd` varchar(30) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
insert into `user`(`id`,`name`,`pwd`) values (1,'狂神','123456'),(2,'张三','abcdef'),(3,'李四','987654');
新建项目
<dependencies>
<dependency>
<groupId>mysqlgroupId>
<artifactId>mysql-connector-javaartifactId>
<version>8.0.12version>
dependency>
<dependency>
<groupId>org.mybatisgroupId>
<artifactId>mybatisartifactId>
<version>3.5.4version>
dependency>
<dependency>
<groupId>junitgroupId>
<artifactId>junitartifactId>
<version>4.12version>
<scope>testscope>
dependency>
dependencies>
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">
<property name="driver" value="com.mysql.jdbc.Driver"/>
<property name="url" value="jdbc:mysql://localhost:3306/mybatis?useSSL=true&useUnicode=true&characterEncoding=UTF-8"/>
<property name="username" value="${username}"/>
<property name="password" value="${password}"/>
dataSource>
environment>
environments>
<mappers>
<mapper resource="org/mybatis/example/BlogMapper.xml"/>
mappers>
configuration>
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 {
String resource = "mybatis-config.xml";
InputStream inputStream = Resources.getResourceAsStream(resource);
sqlSessionFactory = new SqlSessionFactoryBuilder().build(inputStream);
} catch (IOException e) {
e.printStackTrace();
}
}
//获取SqlSession连接
public static SqlSession getSession(){
return sqlSessionFactory.openSession();
}
}
实体类
public class User {
private int id; //id
private String name; //姓名
private String pwd; //密码
//构造,有参,无参
//set/get
//toString()
}
Dao接口
public interface UserDao {
public List<User> getUserList();
}
接口实现类由原来的Daoimp转变成一个Mapper配置文件
DOCTYPE mapper
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.kuang.dao.UserDao">
<select id="getUserList" resultType="com.kuang.pojo.User">
select * from USER
select>
mapper>
注意点
org.apache.ibatis.binding.BindingException: Type interface com.kuang.dao.UserDao is not known to the MapperRegistry.
MapperRegistry是什么?
<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>
可能会遇到的问题
namespace中的包名要个Dao/mapper接口的包名一致
public interface UserMapper {
//查询所有用户
public List<User> getUserList();
//插入用户
public void addUser(User user);
}
<insert id="addUser" parameterType="com.kuang.pojo.User">
insert into user (id,name,password) values (#{id}, #{name}, #{password})
insert>
@Test
public void test2() {
SqlSession sqlSession = MybatisUtils.getSqlSession();
UserMapper mapper = sqlSession.getMapper(UserMapper.class);
User user = new User(3,"黑子","666");
mapper.addUser(user);
//增删改一定要提交事务
sqlSession.commit();
//关闭sqlSession
sqlSession.close();
}
注意:增删改一定要提交事务
sqlSession.commit();
int insertProduct(Product product);
<insert id="insertProduct" parameterType="com.hkd.pojo.Product">
insert into product(productid,name) values (#{productid},#{name})
insert>
@Test
public void test3(){
SqlSession sqlSession = MybatisUtils.getSession();
ProductMapper productMapper = sqlSession.getMapper(ProductMapper.class);
productMapper.insertProduct(new Product("1","zhang"));
sqlSession.commit();
sqlSession.close();
}
接口
int updateProduct(Product product);
mapper
<update id="updateProduct" parameterType="com.hkd.pojo.Product">
update product set name=#{name} where productid=#{productid}
update>
测试
@Test
public void update(){
SqlSession sqlSession = MybatisUtils.getSession();
ProductMapper mapper = sqlSession.getMapper(ProductMapper.class);
mapper.updateProduct(new Product("1","lisi"));
sqlSession.commit();
sqlSession.close();
}
接口
int deleteProduct(int id);
mapper
<delete id="deleteProduct" parameterType="int">
delete from product where productid=#{productid}
delete>
测试
@Test
public void delete(){
SqlSession sqlSession = MybatisUtils.getSession();
ProductMapper productMapper = sqlSession.getMapper(ProductMapper.class);
productMapper.deleteProduct(1);
sqlSession.commit();
sqlSession.close();
}
假设实体类、数据库中的表、字段或者参数过多,我们应该考虑使用Map!
接口
int insertP(Map map);
mapper
<insert id="insertP" parameterType="map">
insert into product(productid) values (#{id})
insert>
测试
@Test
public void insertp(){
SqlSession sqlSession = MybatisUtils.getSession();
ProductMapper productMapper = sqlSession.getMapper(ProductMapper.class);
Map map=new HashMap();
map.put("id",1);
productMapper.insertP(map);
sqlSession.commit();
sqlSession.close();
}
Map传递参数,直接在sql中取出key即可
对象传递参数,直接在sql中取对象的属性即可
只有一个基本类型参数的情况下,可以直接在sql中取到
多个参数用Map,或者注解
模糊查询怎么写?
Java代码执行的时候,传递通配符% %
List<User> userList = mapper.getUserLike("%李%");
在sql拼接中使用通配符
select * from user where name like "%"#{value}"%"
mybatis-config.xml
MyBatis 的配置文件包含了会深深影响 MyBatis 行为的设置和属性信息。
properties(属性)
settings(设置)
typeAliases(类型别名)
typeHandlers(类型处理器)
objectFactory(对象工厂)
plugins(插件)
environments(环境配置)
environment(环境变量)
transactionManager(事务管理器)
dataSource(数据源)
databaseIdProvider(数据库厂商标识)
mappers(映射器)
Mybatis可以适应多套环境
不过要记住:尽管可以配置多个环境,但每个 SqlSessionFactory 实例只能选择一种环境
学会配置使用多套环境
MyBatis默认的事务管理器就是JDBC ,连接池:POOLED
我们可以通过properties属性来实现引用配置文件
这些属性可以在外部进行配置,并可以进行动态替换。你既可以在典型的 Java 属性文件中配置这些属性,也可以在 properties 元素的子元素中设置。「db.properties」
编写一个配置文件
driver=com.mysql.cj.jdbc.Driver
url=jdbc:mysql://localhost:3306/mybatis?userSSL=true&useUnicode=true&characterEncoding=UTF-8&serverTimezone=UTC
username=root
password=root
在核心配置中引入
有顺序规定,properties在前
注意:如果使用db.properties连接数据库,核心配置文件中使用${键}获取properties中的值
<properties resource="db.properties">properties>
类型别名可为 Java 类型设置一个缩写名字。 它仅用于 XML 配置.
意在降低冗余的全限定类名书写。
<typeAliases>
<typeAlias type="com.kuang.pojo.User" alias="User"/>
typeAliases>
也可以指定一个包,每一个在包 domain.blog 中的 Java Bean,在没有注解的情况下,会使用 Bean 的首字母小写的非限定类名来作为它的别名。 比如 domain.blog.Author 的别名为 author,若有注解,则别名为其注解值。见下面的例子:
<typeAliases>
<package name="com.kuang.pojo"/>
typeAliases>
在实体类比较少的时候,使用第一种方式。
如果实体类十分多,建议用第二种扫描包的方式。
第一种可以DIY别名,第二种不行,如果非要改,需要在实体上增加注解。
@Alias("author")
public class Author {
...
}
这是 MyBatis 中极为重要的调整设置,它们会改变 MyBatis 的运行时行为。
MapperRegistry:注册绑定我们的Mapper文件
第一种:推荐使用
<mappers>
<mapper resource="com/kuang/dao/UserMapper.xml"/>
mappers>
第二种:使用class文件绑定
<mappers>
<mapper class="com.kuang.dao.UserMapper"/>
mappers>
注意点:
第三种:使用包扫描进行注入
<mappers>
<package name="com.kuang.dao"/>
mappers>
生命周期,作用域,是至关重要的,因为错误的使用会导致非常严重的并发问题
SqlSessionFactoryBuilder:
SqlSessionFactory:
SqlSession
这里每一个Mapper,就代表一个具体的业务!
数据库中的字段
// select * from user where id = #{id}
// 类型处理器
// select id,name,pwd from user where id = #{id}
解决方法:
起别名
<select id="getUserById" resultType="com.kuang.pojo.User">
select id,name,pwd as password from USER where id = #{id}
select>
结果集映射
id name pwd
id name password
<resultMap id="map" type="product">
<result column="productid" property="id">result>
resultMap>
<select id="getProductList" resultMap="map">
select * from product
select>
resultMap元素是Mybatis中最重要最强大的元素
ResultMap的设计思想是,对于简单的语句根本不需要配置显式的结果映射,而对于复杂一点的语句只需要描述他们的关系就行了
ResultMap
的优秀之处——你完全可以不用显式地配置它们。
如果这个世界总是这么简单就好了。
如果一个数据库操作,出现了异常,我们需要排错。日志就是最好的助手
曾经:sout、debug
在Mybatis中具体使用哪一个日志实现,在设置中设定
在Mybatis核心配置文件中,配置我们的日志
<settings>
<setting name="logImpl" value="STDOUT_LOGGING"/>
settings>
什么是LOG4J ?
先导入log4j的包
<dependency>
<groupId>log4jgroupId>
<artifactId>log4jartifactId>
<version>1.2.17version>
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/rzp.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.sq1.PreparedStatement=DEBUG
配置log4j为日志的实现
<settings>
<setting name="logImpl" value=""/>
settings>
log4j使用!
简单使用
在使用log4j的类中,导入包 import org.apache.log4j.Logger;
日志对象,参数为当前类的class对象
static Logger logger = Logger.getLogger(UserDaoTest.class);
日志级别
logger.info("info: 测试log4j");
logger.debug("debug: 测试log4j");
logger.error("error:测试log4j");
思考:为什么分页?
SELECT * from user limit startIndex,pageSize
使用Mybatis实现分页,核心SQL
接口
List<Product> getPriductByLimit(HashMap<String, Integer> map);
Mapper.xml
<select id="getPriductByLimit" resultMap="map">
select * from product limit #{startIndex},#{pageSize}
select>
测试
@Test
public void selectByLimit(){
SqlSession sqlSession = MybatisUtils.getSession();
ProductMapper mapper = sqlSession.getMapper(ProductMapper.class);
HashMap<String, Integer> map = new HashMap<>();
map.put("startIndex",1);
map.put("pageSize",2);
List<Product> list = mapper.getPriductByLimit(map);
for (Product product : list) {
System.out.println(product);
}
}
不再使用SQL实现分页
接口
//分页2
List<User> getUserByRowBounds();
mapper.xml
<select id="getUserByRowBounds">
select * from user limit #{startIndex},#{pageSize}
select>
测试
public void getUserByRowBounds(){
SqlSession sqlSession = MybatisUtils.getSqlSession();
//RowBounds实现
RowBounds rowBounds = new RowBounds(1, 2);
//通过Java代码层面实现分页
List<User> userList = sqlSession.selectList("com.kaung.dao.UserMapper.getUserByRowBounds", null, rowBounds);
for (User user : userList) {
System.out.println(user);
}
sqlSession.close();
}
了解即可,万一以后公司的架构师,说要使用,需要知道是什么东西
注解在接口上实现
@Select("select * from user")
List<User> getUsers();
需要在核心配置文件中绑定接口
<mappers>
<mapper class="com.kuang.dao.UserMapper"/>
mappers>
测试使用
本质:反射机制实现
Mybatis执行流程解剖
我们可以在工具类创建的时候实现自动提交事物!
public static SqlSession getSession() {
return sqlSessionFactory.openSession(true);
}
编写接口,增加注解
package com.hou.dao;
import com.hou.pojo.User;
import org.apache.ibatis.annotations.*;
import java.util.List;
public interface UserMapper {
@Select("select * from user")
List<User> getUsers();
//方法存在多个参数,所有的参数必须加@Param
@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(@Param("id") int id);
}
测试类
注意:我们必须将接口注册绑定在我们的核心配置文件中
#{} 、${}区别
一般使用#{},能够避免SQL注入
偷懒神器
Project Lombok is a java library that automatically plugs into your editor and build tools, spicing up your java.
Never write another getter or equals method again, with one annotation your class has a fully featured builder, Automate your logging variables, and much more.
使用步骤:
在idea中安装插件
在项目中导入lombok的jar包
<dependency>
<groupId>org.projectlombokgroupId> <artifactId>lombokartifactId>
<version>1.18.10version>
<scope>providedscope>
dependency>
在实体类上加注解
@Getter and @Setter
@FieldNameConstants
@ToString
@EqualsAndHashCode
@AllArgsConstructor, @RequiredArgsConstructor and @NoArgsConstructor
@Log, @Log4j, @Log4j2, @Slf4j, @XSlf4j, @CommonsLog, @JBossLog, @Flogger, @CustomLog
@Data
@Builder
@SuperBuilder
@Singular
@Delegate
@Value
@Accessors
@Wither
@With
@SneakyThrows
@val
说明
@Data
@AllArgsConstructor
@NoArgsConstructor
public class User {
private int id;
private String name;
private String password;
}
<select id="getStudent" resultMap="StudentTeacher">
select * from student
select>
<resultMap id="StudentTeacher" type="student">
<result property="id" column="id"/>
<result property="name" column="name"/>
<collection 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">result>
association>
resultMap>
回顾Mysql多对一查询
比如:一个老师拥有多个学生
对于老师而言,就是一对多的关系
环境搭建,和刚才一样
@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;
}
按照结果嵌套处理
<!--按结果嵌套查询-->
<select id="getTeacher" resultMap="StudentTeacher">
SELECT s.id sid, s.name sname,t.name tname,t.id tid FROM student s, teacher t
WHERE s.tid = t.id AND tid = #{
tid}
</select>
<resultMap id="StudentTeacher" type="Teacher">
<result property="id" column="tid"/>
<result property="name" column="tname"/>
<!--复杂的属性,我们需要单独处理 对象:association 集合:collection
javaType=""指定属性的类型!
集合中的泛型信息,我们使用ofType获取
-->
<collection property="students" 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 mybatis.teacher where id = #{tid} select>
<resultMap id="Teacherstudent2" type="Teacher">
<collection property="students" javaType="ArrayList" ofType=l select="getstudentByTeacherId" column="id"/>
resultMap>
<select id="getstudentByTeacherId" resultType="student">
select* from mybatis.student where tid = #{tid} select>
注意点:
面试高频
什么是动态SQL:根据不同的条件生成不同的SQL语句
利用动态SQL这一特性可以彻底摆脱这种痛苦
如果你之前用过 JSTL 或任何基于类 XML 语言的文本处理器,你对动态 SQL 元素可能会感觉似曾相识。在 MyBatis 之前的版本中,需要花时间了解大量的元素。借助功能强大的基于 OGNL 的表达式,MyBatis 3 替换了之前的大部分元素,大大精简了元素种类,现在要学习的元素种类比原来的一半还要少。
if
choose (when, otherwise)
trim (where, set)
foreach
CREATE TABLE `mybatis`.`blog` (
`id` int(10) NOT NULL AUTO_INCREMENT COMMENT '博客id',
`title` varchar(30) NOT NULL COMMENT '博客标题',
`author` varchar(30) NOT NULL COMMENT '博客作者',
`create_time` datetime(0) NOT NULL COMMENT '创建时间',
`views` int(30) NOT NULL COMMENT '浏览量',
PRIMARY KEY (`id`)
)
创建一个基础工程
导包
编写配置文件
编写实体类
@Data
public class Blog {
private int id;
private String title;
private String author;
private Date createTime;
private int views;
}
编写实体类对应Mapper接口和Mapper.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>
select * from blog
<where>
<if test="title != null">
and title=#{title}
if>
<if test="author != null">
and author=#{author}
if>
where>
trim可以自定义
所谓的动态SQL,本质还是SQL语句,只是在SQL层面,执行一个逻辑代码
有的时候我们可能将一些功能的部分抽取出来,方便复用。
使用SQL标签抽取公共部分
<sql id="query-if">
<if test="title!=null">
and title=#{title}
if>
<if test="author!=null">
and author=#{author}
if>
sql>
在需要使用的地方使用include标签引用
<select id="queryBlogChoose" parameterType="map" resultType="blog">
select * from blog
<where>
<include refid="query-if">include>
where>
select>
注意事项:
<select id="selectPostIn" resultType="domain.blog.Post">
SELECT *
FROM POST P
WHERE ID in
<foreach item="item" index="index" collection="list"
open="(" separator="," close=")">
#{item}
foreach>
select>
动态SQL就是在拼接SQL语句,只要保SQL的正确性,按照SQL的格式,去排列组合就可以
建议:
查询 : 连接数据库 ,耗资源!
一次查询的结果,给它暂存在一个可以直接取到的地方-->内存:缓存
我们再次查询相同数据的时候,直接走缓存,就不用走数据库了
测试步骤:
缓存失败的情况:
小结:一级缓存默认开启,只在一次SqlSession中有效,也就是拿到连接到关闭连接这个区间段,一级缓存就是一个Map
步骤:
setting里开启全局缓存
<setting name="cacheEnabled" value="true"/>
在要使用二级缓存的Mapper中开启二级缓存
<cache
eviction="FIFO"
flushInterval="60000"
size="512"
readOnly="true"/>
//也可以自定义参数
测试
问题:我们需要将实体类序列化!否则就会报错!
Caused by:java.io.NotSerializableException:com.hkd.pojo.User
小结:
Ehcache是一种广泛使用的开源Java分布式缓存。主要面向通用缓存
步骤:
导包
<dependency>
<groupId>org.mybatis.cachesgroupId>
<artifactId>mybatis-ehcacheartifactId>
<version>1.2.1version>
dependency>
在mapper中指定使用我们的ehcache缓存实现
<cache type="org.mybatis.caches.ehcache.EhcacheCache"/>
Ehcache.xml
diskStore:为缓存路径,ehcache分为内存和磁盘两级,此属性定义磁盘的缓存位置。参数解释如下:
user.home – 用户主目录
user.dir – 用户当前工作目录
java.io.tmpdir – 默认临时文件路径
<diskStore path="java.io.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,最近最少使用的,缓存的元素有一个时间戳,当缓存容量满了,而又需要腾出地方来缓存新的元素的时候,那么现有缓存元素中时间戳离当前时间最远的元素将被清出缓存。
<cache
name="cloud_user"
eternal="false"
maxElementsInMemory="5000"
overflowToDisk="false"
diskPersistent="false"
timeToIdleSeconds="1800"
timeToLiveSeconds="1800"
memoryStoreEvictionPolicy="LRU"/>