1、简介
1.1、什么是 MyBatis?
-
MyBatis 是一款优秀的
持久层框架
- 它支持自定义 SQL、存储过程以及高级映射。
- MyBatis 免除了几乎所有的 JDBC 代码以及设置参数和获取结果集的工作。
- MyBatis 可以通过简单的 XML 或注解来配置和映射原始类型、接口和 Java POJO(Plain Old Java Objects,普通老式 Java 对象)为数据库中的记录。
-
MyBatis本是apache的一个
开源项目
iBatis,2010年这个
项目
由apache software foundation迁移到了google code,并且改名为MyBatis。 -
2013年11月迁移到
Github
。
如何获得Mybatis?
- maven仓库
- Githup:https://github.com/mybatis/mybatis-3/releases
- 中文文档:https://mybatis.org/mybatis-3/index.html
1.2、持久化
数据持久化
- 持久化就是将程序的数据在持久状态和瞬时状态转换的过程
- 瞬时怎么理解(例如内存:断电即失)
- 持久化手段(数据库【JDBC】、io文件持久化)
- 生活举例:冷藏、罐头…
为什么需要持久化
- 有一些对象,不能让其丢失
- 用内存存储昂贵等
1.3、持久层
Dao层、Service层、Controller层…
- 完成持久化工作的代码层
- 层界限十分明显
1.4、为什么需要Mybatis
- 传统的JDBC代码太复杂。简化、框架、自动化。
-
优点:
- 简单易学:本身就很小且简单。没有任何第三方依赖,最简单安装只要两个jar文件+配置几个sql映射文件。易于学习,易于使用。通过文档和源代码,可以比较完全的掌握它的设计思路和实现。
- 灵活:mybatis不会对应用程序或者数据库的现有设计强加任何影响。 sql写在xml里,便于统一管理和优化。通过sql语句可以满足操作数据库的所有需求。
- 解除sql与程序代码的耦合:通过提供DAO层,将业务逻辑和数据访问逻辑分离,使系统的设计更清晰,更易维护,更易单元测试。sql和代码的分离,提高了可维护性。
- 提供映射标签,支持对象与数据库的orm字段关系映射。
- 提供对象关系映射标签,支持对象关系组建维护。
- 提供xml标签,支持编写动态sql。
2、第一个Mybatis程序
思路:搭建环境——导入Mybatis——编写代码——测试
2.1、搭建环境
-
搭建数据库
-
新建项目
-
新建一个普通的maven项目
-
删除src目录
-
导入maven依赖
<!--导入依赖--> <dependencies> <!--mysql驱动--> <dependency> <groupId>mysql</groupId> <artifactId>mysql-connector-java</artifactId> <version>5.1.47</version> </dependency> <!--mybatis--> <dependency> <groupId>org.mybatis</groupId> <artifactId>mybatis</artifactId> <version>3.5.2</version> </dependency> <!--Junit--> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.12</version> </dependency> </dependencies>
-
2.2、创建一个模块
在新建的普通maven项目中(添加module)
-
编写mybatis的核心配置文件
<?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> <!--环境配置,可配置多个--> <environments default="development"> <environment id="development"> <!--事务管理JDBC--> <transactionManager type="JDBC"/> <dataSource type="POOLED"> <property name="driver" value="com.mysql.jdbc.Driver"/> <property name="url" value="jdbc:mysql://localhost:3306/ekp_v16?useSSL=true&useUnicode=true&characterEncoding=UTF-8"/> <property name="username" value="root"/> <property name="password" value="root"/> </dataSource> </environment> </environments> </configuration>
-
编写mybatis工具类
package com.wong.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静态代码块中,初始化就让其加载 static { try { //使用Mybatis获取sqlSessionFactory对象 String resource = "mybatis-config.xml"; InputStream inputStream = Resources.getResourceAsStream(resource); sqlSessionFactory = new SqlSessionFactoryBuilder().build(inputStream); } catch (IOException e) { e.printStackTrace(); } } //既然有了 SqlSessionFactory,顾名思义,我们可以从中获得 SqlSession 的实例。 // SqlSession 提供了在数据库执行 SQL 命令所需的所有方法 public static SqlSession getSqlSession() { return sqlSessionFactory.openSession(); } }
2.3、编写代码
-
实体类
package com.wong.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接口
package com.wong.dao; import com.wong.pojo.User; import java.util.List; //这里的dao就等价于mybatis使用的mapper,这里暂时这么使用 public interface UserDao { List<User> getUserList(); }
-
接口实现类
举例使用JDBC时的操作:
首先是实现定义的这个接口,然后再在这个实现类中进行SQL语句的查询
package com.wong.dao; import com.wong.pojo.User; import java.util.List; public class UserDaoImlp implements UserDao { public List<User> getUserList() { //执行Sql语句 String sql = "select * from ekp_v16.user"; //结果集 Resultset return null; } }
对比:
接口实现类由原来的UserDaoImpl转变为一个Mapper.xml的配置文件
namespace命名控件:绑定绑定对应接口
id:对应着实现接口中的方法名
resultType:返回的结果集对应着接口中对应方法的返回类型,需要注意的是类型要写”
全限定名
“,因为配置文件是无法获取Java的类型。<?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.wong.dao.UserDao"> <!--select查询语句--> <!--id对应着之前使用JDBC中定义的方法名--> <select id="getUserList" resultType="com.wong.pojo.User"> select * from ekp_v16.user </select> </mapper>
2.4、测试
注意点:
报错:org.apache.ibatis.binding.BindingException: Type interface com.wong.dao.UserDao is not known to the MapperRegistry.
MapperRegistry是什么?
需要在核心配置文件中注册mappers
<!--每一个Mapper.xml都需要在Mybatis核心配置文件中注册-->
<mappers>
<mapper resource="com/wong/dao/UserMapper.xml"></mapper>
</mappers>
junit测试:
package com.wong.dao;
import com.wong.pojo.User;
import com.wong.utils.MybatisUtils;
import org.apache.ibatis.session.SqlSession;
import org.junit.Test;
import java.util.List;
public class UserDaoTest {
@Test
public void test() {
//1.获得sqlSession对象
SqlSession sqlSession = MybatisUtils.getSqlSession();
//执行SQL
//方式一:getMapper(建议方式)
//已知UserDao和UserMapper.xml的关系就类似于,UserMapper.xml其实就是UserDao的实现类,
//想要得到执行的SQL语句,拿到UserDao接口也就意味着拿到了UserMapper.xml中的查询。
UserDao userDao = sqlSession.getMapper(UserDao.class);
List<User> userList = userDao.getUserList();
//方式二:
//List<User> userLists = sqlSession.selectList("com.wong.dao.UserDao.getUserList");
//sqlSession.selectOne();
//sqlSession.selectMap(); 返回Map类型方法
for (User user : userList) {
System.out.println(user);
}
//关闭sqlSession
sqlSession.close();
}
}
3、CRUD
1、namespace中的包名要和Dao/mapper接口的包名一致
2、select
选择,查询语句:
- id:对应namespace中的方法名;
- resultType:sql语句执行的返回值;
- parameterType:参数类型
-
编写接口
//根据ID查询用户 User getUserById(int id);
-
编写对应的mapper.xml中的sql语句
<select id="getUserById" parameterType="int" resultType="com.wong.pojo.User"> select * from ekp_v16.user where id = #{id}; </select>
-
测试
@Test public void getUserById() { SqlSession sqlSession = MybatisUtils.getSqlSession(); UserMapper mapper = sqlSession.getMapper(UserMapper.class); User user = mapper.getUserById(1); System.out.println(user); sqlSession.close(); }
3、insert update delete
编写接口:
package com.wong.dao;
import com.wong.pojo.User;
import java.util.List;
public interface UserMapper {
//查询全部用户
List<User> getUserList();
//根据ID查询用户
User getUserById(int id);
//insert一个用户
int addUser(User user);
//修改用户
int updateUser(User user);
//删除一个用户
int deleteUser(int id);
}
编写XML中对应的SQL语句:
<?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.wong.dao.UserMapper">
<!--select查询语句-->
<!--id对应着之前使用JDBC中定义的方法名-->
<select id="getUserList" resultType="com.wong.pojo.User">
select *
from ekp_v16.user;
</select>
<select id="getUserById" parameterType="int" resultType="com.wong.pojo.User">
select *
from ekp_v16.user
where id = #{id};
</select>
<!--对象中的属性,可以直接取出来-->
<insert id="addUser" parameterType="com.wong.pojo.User">
insert into ekp_v16.user(id, name, pwd)
values (#{id}, #{name}, #{pwd});
</insert>
<update id="updateUser" parameterType="com.wong.pojo.User">
update ekp_v16.user
set name = #{name },
pwd =#{pwd}
where id = #{id};
</update>
<delete id="deleteUser" parameterType="int">
delete
from ekp_v16.user
where id = #{id};
</delete>
</mapper>
测试:
package com.wong.dao;
import com.wong.pojo.User;
import com.wong.utils.MybatisUtils;
import org.apache.ibatis.session.SqlSession;
import org.junit.Test;
import java.util.List;
public class UserDaoTest {
@Test
public void getUserById() {
SqlSession sqlSession = MybatisUtils.getSqlSession();
UserMapper mapper = sqlSession.getMapper(UserMapper.class);
User user = mapper.getUserById(1);
System.out.println(user);
sqlSession.close();
}
//增删改需要提交事务
@Test
public void addUser() {
SqlSession sqlSession = MybatisUtils.getSqlSession();
UserMapper mapper = sqlSession.getMapper(UserMapper.class);
int res = mapper.addUser(new User(3, "qweqw", "9090"));
if (res > 0) {
System.out.println("插入成功");
}
//提交事务
sqlSession.commit();
sqlSession.close();
}
@Test
public void updateUser() {
SqlSession sqlSession = MybatisUtils.getSqlSession();
UserMapper mapper = sqlSession.getMapper(UserMapper.class);
mapper.updateUser(new User(3, "888888", "0000"));
//提交事务
sqlSession.commit();
sqlSession.close();
}
@Test
public void deleteUser() {
SqlSession sqlSession = MybatisUtils.getSqlSession();
UserMapper mapper = sqlSession.getMapper(UserMapper.class);
mapper.deleteUser(3);
//提交事务
sqlSession.commit();
sqlSession.close();
}
}
注意点:增删改需要提交事务
4、Map
假设,实体类或者数据库中的表,字段或者参数过多。应当考虑使用Map。
举例:
int addUser2(Map<String, Object> map);
User getUserById2(Map<String, Object> map);
<insert id="addUser2" parameterType="map">
insert into ekp_v16.user(id, name, pwd)
values (#{userid}, #{userName}, #{passWoord});
</insert>
<select id="getUserById2" parameterType="map" resultType="com.wong.pojo.User">
select *
from ekp_v16.user
where id = #{helloId};
</select>
@Test
public void addUser2() {
SqlSession sqlSession = MybatisUtils.getSqlSession();
UserMapper mapper = sqlSession.getMapper(UserMapper.class);
Map<String, Object> map = new HashMap<String, Object>();
map.put("userid", 5);
map.put("userName", "xhaowafx");
map.put("passWoord", "passowrd");
mapper.addUser2(map);
//提交事务
sqlSession.commit();
sqlSession.close();
}
@Test
public void getUserById2() {
SqlSession sqlSession = MybatisUtils.getSqlSession();
UserMapper mapper = sqlSession.getMapper(UserMapper.class);
Map<String, Object> map = new HashMap<String, Object>();
map.put("helloId", 1);
User userById2 = mapper.getUserById2(map);
System.out.println(userById2);
sqlSession.close();
}
Map传递参数:直接在SQL中取出key【parameterType=“map”】
对象传递参数:直接在SQL中取对象的属性【parameterType=“object”】
只有一个基本类型参数的情况下,可以直接在SQL中取到。(即:假如你在方法接口方法中参数类型给的是int类型,在mapper可以直接获取parameterType不用写也行)
5、模糊查询
List<User> getUserLike(String value);
<select id="getUserLike" resultType="com.wong.pojo.User">
select *
from ekp_v16.user
where name like #{value};
</select>
public void getUserLike() {
SqlSession sqlSession = MybatisUtils.getSqlSession();
UserMapper mapper = sqlSession.getMapper(UserMapper.class);
List<User> userList = mapper.getUserLike("x");
for (User user : userList) {
System.out.println(user);
}
sqlSession.close();
}
-
Java代码执行时,传递通配符%%;
List<User> userList = mapper.getUserLike("%x%");
-
在sql拼接中使用通配符
<select id="getUserLike" resultType="com.wong.pojo.User"> select * from ekp_v16.user where name like "%"#{value}"%"; </select>
4、配置解析
1、核心配置文件
-
官方推荐命名为:mybatis-config.xml
-
MyBatis 的配置文件包含了会深深影响 MyBatis 行为的设置和属性信息。
configuration(配置) properties(属性) settings(设置) typeAliases(类型别名) typeHandlers(类型处理器) objectFactory(对象工厂) plugins(插件) environments(环境配置) environment(环境变量) transactionManager(事务管理器) dataSource(数据源) databaseIdProvider(数据库厂商标识) mappers(映射器)
2、环境配置(environments)
MyBatis 可以配置成适应多种环境
不过要记住:尽管可以配置多个环境,但每个SqlSessionFactory实例只能选择一种环境。
Mybatis默认的事务管理器就是JDBC(在MyBatis中有两种类型的事务管理器【也就是 type=“[JDBC|MANAGED]”】)
连接池:
POOLED
(有三种内建的数据源类型【也就是 type=“[UNPOOLED|POOLED|JNDI]”】)
3、属性(properties)
可以通过properties属性来实现引用配置文件
这些属性可以在外部进行配置,并可以进行动态替换。你既可以在典型的 Java 属性文件中配置这些属性,也可以在 properties 元素的子元素中设置【db.properties】
编写一个配置文件
db.properties
driver=com.mysql.jdbc.Driver
url=jdbc:mysql://localhost:3306/ekp_v16?useSSL=true&useUnicode=true&characterEncoding=UTF-8
username=root
password=root
在核心配置文件中引入:
第一种使用:直接引用配置文件(properties resource=“db.properties”/)然后使用${}使用配置文件中的变量
<?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>
<!--引入配置文件-->
<properties resource="db.properties"/>
<!--环境配置,可配置多个-->
<environments default="development">
<environment id="development">
<!--事务管理JDBC-->
<transactionManager type="JDBC"/>
<dataSource type="POOLED">
<property name="driver" value="${driver}"/>
<property name="url" value="${url}"/>
<property name="username" value="${username}"/>
<property name="password" value="${password}"/>
</dataSource>
</environment>
</environments>
<!--每一个Mapper.xml都需要在Mybatis核心配置文件中注册-->
<mappers>
<mapper resource="com/wong/dao/UserMapper.xml"></mapper>
</mappers>
</configuration>
第二种使用:引用配置文件(properties resource=“db.properties”)在其中加入”property“标签定义新的变量使用
<?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>
<!--引入配置文件-->
<properties resource="db.properties">
<property name="names" value="root"/>
<property name="pwd" value="root"/>
</properties>
<!--环境配置,可配置多个-->
<environments default="development">
<environment id="development">
<!--事务管理JDBC-->
<transactionManager type="JDBC"/>
<dataSource type="POOLED">
<property name="driver" value="${driver}"/>
<property name="url" value="${url}"/>
<property name="username" value="${names}"/>
<property name="password" value="${pwd}"/>
</dataSource>
</environment>
</environments>
<!--每一个Mapper.xml都需要在Mybatis核心配置文件中注册-->
<mappers>
<mapper resource="com/wong/dao/UserMapper.xml"></mapper>
</mappers>
</configuration>
- 可以直接引入外部文件
- 可以在其中增加一些属性配置
- 如果两个文件有同一个字段,优先使用外部配置文件中定义的字段
4、类型别名(typeAliases)
-
类型别名可为 Java 类型设置一个缩写名字
-
它仅用于 XML 配置,意在降低冗余的全限定类名书写
这样在Mapper.xml中使用resultType=”com.wong.pojo.User”就可以直接使用resultType=“User”
<!--给类起一个别名--> <typeAliases> <typeAlias type="com.wong.pojo.User" alias="User"/> </typeAliases>
也可以指定一个包名,MyBatis 会在包名下面搜索需要的 Java Bean(扫描实体类的包,它的默认别名就为这个类的类名【首字母小写】)
<!--给类起一个别名-->
<typeAliases>
<package name="com.wong.pojo"/>
</typeAliases>
实体类比较少的时候,使用第一种方式。
如果实体类十分多,建议使用第二种。
第一种可以自定义别名,第二种则不能,如果非要修改,需要在实体类上增加注解。
@Alias("user")
public class User {}
5、设置
这是 MyBatis 中极为重要的调整设置,它们会改变 MyBatis 的运行时行为。
6、其他配置
- typeHandlers(类型处理器)
- objectFactory(对象工厂)
-
plugins(插件)
- mybatis-generator-core
- mybatis-plus
- 通用mapper
7、映射器(mappers)
MapperRegistry:注册绑定Mapper文件
方式一:使用这种方式位置文件位置可以随便放,只要路径给对就可以了
<!--每一个Mapper.xml都需要在Mybatis核心配置文件中注册-->
<mappers>
<mapper resource="com/wong/dao/UserMapper.xml"></mapper>
</mappers>
方式二:使用class文件绑定注册
<mappers>
<mapper class="com.wong.dao.UserMapper"></mapper>
</mappers>
注意点:
- 接口和Mapper配置文件必须同名
- 接口和Mapper配置文件必须在同一个包下
方式三:使用扫描包进行注入绑定
<mappers>
<package name="com.wong.dao"/>
</mappers>
注意点:
- 接口和Mapper配置文件必须同名
- 接口和Mapper配置文件必须在同一个包下
8、生命周期和作用域
生命周期,和作用域,是至关重要的,因为错误的使用会导致非常严重的
并发问题
。
SqlSessionFactoryBuilder:
- 一旦创建了SqlSessionFactory,就不再需要它了
- 局部变量
SqlSessionFactory:
- 可以想象为:数据库连接池
-
SqlSessionFactory 一旦被创建就应该在应用的运行期间一直存在,
没有任何理由丢弃它或重新创建另一个实例
。 - 因此 SqlSessionFactory 的最佳作用域是应用作用域
- 最简单的就是使用单例模式或者静态单例模式
SqlSession:
- 连接到连接池的一个请求
- SqlSession 的实例不是线程安全的,因此是不能被共享的,所以它的最佳的作用域是请求或方法作用域
- 用完之后需要关闭,否则资源占用
这里面每一个Mapper,就代表一个具体的业务。
5、ResultMap(解决属性名和数据库字段名不一致的问题)
1、问题讨论
数据库中的字段:
user表:字段(id、name、pwd)
实体类中的属性:
user类:属性(id、name、password)
查询语句:
select * from table where id = #{ }
上面的查询语句就等同于下面
select id,name,pwd from table where id = #{}
结果:
由于字段对应不上,所以查询出来的pwd为null
解决方法:
-
起别名
select id,name,pwd as password from table where id = #{}
2、resultMap
结果集映射
这里是数据库字段和实体类字段的对应表示:
id name pwd
id name password
解决方法:
<!--结果集映射-->
<resultMap id="UserMap" type="com.wong.pojo.User">
<!--column数据库中的字段,property实体类中的属性-->
<result column="id" property="id"/>
<result column="name" property="name"/>
<result column="pwd" property="password"/>
</resultMap>
<select id="getUserLike" resultMap="UserMap">
select *
from ekp_v16.user
where name like #{value};
</select>
- resultMap元素是MyBatis中最重要最强大的元素
- ResultMap的设计思想是,对于简单的语句根本不需要配置显式的结果映射,而对于复杂一点的语句只需要描述它们的关系就行了。
- ResultMap最优秀的地方在于,虽然你已经对它相当了解了,但是根本就不需要显式地用到他们。(所以说上面只需要映射不一致的字段pwd就可以了,并不需要映射id和name字段)
6、日志
6.1、日志工厂
如果一个数据操作,出现了异常,我们需要排错。日志就是最好的助手
曾经:sout、debug
现在:日志工厂
查看mybatis的官方文档中的设置,找到描述:
- SLF4J
-
LOG4J
- LOG4J2
- COMMONS_LOGGING
-
STDOUT_LOGGING
- NO_LOGGING
在mybatis中具体使用哪一个日志实现,在设置中设定。
STDOUT_LOGGING:标准日志输出(标准日志工厂实现)
在mybatis核心配置文件中,配置日志:
注意大小写,空格等错误出现。
<settings>
<setting name="logImpl" value="STDOUT_LOGGING"/>
</settings>
6.2、LOG4J
什么是LOG4J:
- Log4j是Apache的一个开源项目,通过使用Log4j,我们可以控制日志信息输送的目的地是控制台、文件、GUI组件
- 我们也可以控制每一条日志的输出格式;
- 通过定义每一条日志信息的级别,我们能够更加细致地控制日志的生成过程。
- 通过一个配置文件来灵活地进行配置,而不需要修改应用的代码。
-
先导入Log4j的jar包
<!-- https://mvnrepository.com/artifact/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/wong.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的使用
简单使用
-
在要使用的Log4j的类中,导入包import org.apache.log4j.Logger;
-
日志对象,参数为当前类的class
static Logger logger = Logger.getLogger(UserDaoTest.class);
-
日志级别
@Test public void testLog4j() { logger.info("info:进入了testLog4j"); logger.debug("debug:进入了testLog4j"); logger.error("error:进入了testLog4j"); }
7、分页
使用分页的目的:减少数据的处理量
7.1、使用limit分页
语法:select * from user limit startIndex,pageSize;
slect * from user limit 3;
如果只写一个参数那么,第一个参数默认是从0的下标开始查询,到下标3结束。#[0,n]
使用mybatis实现分页,核心其实还是SQL:
-
接口
/*分页*/ List<User> getUserByLimit(Map<String, Integer> map);
-
Mapper.xml
<!--分页--> <select id="getUserByLimit" resultType="com.wong.pojo.User" parameterType="map"> select * from ekp_v16.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> userByLimit = mapper.getUserByLimit(map); for (User user : userByLimit) { System.out.println(user); } sqlSession.close(); }
7.2、RowBounds分页
不使用SQL实现分页
-
接口
/*分页2*/ List<User> getRowBounds();
-
Mapper
<!--分页--> <select id="getRowBounds" resultType="com.wong.pojo.User"> select * from ekp_v16.user; </select>
-
测试
@Test public void getRowBounds() { SqlSession sqlSession = MybatisUtils.getSqlSession(); //RowBounds实现 RowBounds rowBounds = new RowBounds(1, 2); //通过Java代码层面实现分页 List<User> userLists = sqlSession.selectList("com.wong.dao.UserMapper.getRowBounds", null, rowBounds); for (User user : userLists) { System.out.println(user); } sqlSession.close(); }
7.3、分页插件
mybatis分页插件PageHelper
8、使用注解开发
8.1、使用注解开发
-
注解在接口上实现
@Select("select * from user") List<User> allUser();
-
需要在核心配置文件中绑定接口
<mappers> <mapper class="com.wong.dao.UserMapper"></mapper> </mappers>
-
测试
@Test public void getallUser() { SqlSession sqlSession = MybatisUtils.getSqlSession(); UserMapper mapper = sqlSession.getMapper(UserMapper.class); List<User> userList = mapper.allUser(); for (User user : userList) { System.out.println(user); } sqlSession.close(); }
本质:反射机制实现
底层:动态代理
Mybatis的详细执行流程
8.2、CRUD
我们可以在工具类创建的时候设置自动提交事务
public static SqlSession getSqlSession() {
return sqlSessionFactory.openSession(true);
}
具体可以查看源码:
编写接口,增加注解
//方法存在多个参数,所有的参数前面都必须加上@Param("id")注解
@Select("select * from user where id = #{qid} and name = #{name}")
User getUserById2(@Param("qid") int id, @Param("name") String name);
@Insert("insert into user(id,name,pwd) values (#{id},#{name},#{password})")
int addUser2();
注意:必须要将接口注册绑定要核心配置文件中
关于@Param()注解
- 基本类型的参数或者String类型,需要加上
- 引用类型不需要加
- 如果只有一个基本类型的话,可以忽略,但是建议还是加上
- 我们在SQL中引用的就是这里@Param()中设定的属性名
9、Lombok
使用步骤:
- 在IDEA中安装Lombok插件
- 在项目中导入lomboke的jar包
- 在实体类上加注解即可
主要的目的就是加上对应的注解之后就可以不用在写get、set等方法了。具体可以百度
10、多对一处理
多对一:
- 多个学生对应一个老师
- 对于学生而言。用一个词描述就是【关联】多个学生,关联一个老师【多对一】
- 对于老师而言。【集合】一个老师,有很多个学生【一对多】
举例:
现在有两个表:学生表的tid关联老师表的id
学生表:student
id name tid
老师表:teacher
id name
现在需要实现的业务:查询出所有的学生以及学生关联的老师
#类似的业务就是:
select s.id,s.name,t.name from student s , teacher t where s.tid = t.id
编写实体类,在student的实体中关联一个老师对象:
public class Student {
private int id;
private String name;
//学生需要关联一个老师
private Teacher teacher;
}
按照查询嵌套处理:
<!--
思路:
1.查询出来所有学生信息
2.根据查询出来的学生的tid,寻找对应的老师
-->
<select id="getStudent" resultType="StudentTeacher">
select *
from student
</select>
<resultMap id="StudentTeacher" type="Student">
<result property="id" column="id"/>
<result property="name" column="name"/>
<!--复杂的属性,我们需要单独处理。对象:association 集合:collection-->
<association property="teacher" column="tid" javaType="Teacher" select="getTeacher"/>
</resultMap>
<select id="getTeacher" resultType="Teacher">
select *
from teacher
where id = #{tid}<!--这里的条件可以随便写,但是建议写上对应的-->
</select>
按照结果嵌套处理
:
<select id="getStudent2" resultMap="StudentTeacher2">
select s.id as sid, s.name as sname, t.name as tname
from student s,
teacher t
where s.tid = t.id
</select>
<resultMap id="StudentTeacher2" type="Student">
<result property="id" column="sid"/>
<result property="name" column="sname"/>
<association property="teacher" javaType="Teacher">
<result property="name" column="tname"/>
</association>
</resultMap>
mysql多对一查询方式:
- 子查询
- 连表查询
11、一对多 处理
比如:一个老师拥有多个学生
对于老师而言就是一对多的关系
-
实体类
学生:
public class Student { private int id; private String name; private int tid; }
老师:
public class Teacher { private int id; private String name; //一个老师拥有多个学生 private List<Student> students; }
-
接口
//获取指定老师下的所有学生及老师的信息 Teacher getTeacher(@Param("tid") int id);
-
Mapper
按结果嵌套查询
<!--按结果嵌套查询--> <select id="getTeacher" resultMap="TeacherStudent"> select t.id as tid, t.name as tname, s.id as sid, s.name as sname 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"/> <!-- 复杂的属性,我们需要单独处理。对象: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 teacher </select> <resultMap id="TeacherStudent2" type="Teacher"> <!--如果属性跟字段能对应得上,就不需要重新DIY了。比如说这里teacher表中的id和name--> <collection property="students" javaType="ArrayList" ofType="Student" column="id" select="getStudentByTeacherId"/> </resultMap> <select id="getStudentByTeacherId" resultMap="Student"> select * from student where tid = #{tid} </select>
小结
- 关联-association【多对一】
- 集合-collection【一对多】
-
javaType & ofType
- javaType 用来指定实体类中属性的类型
- ofType 用来指定映射到List或者集合中的实体类型,泛型中的约束类型
12、动态SQL
什么是动态SQL:动态SQL就是指根据不同的条件生成不同的SQL语句
动态 SQL 是 MyBatis 的强大特性之一。如果你使用过 JDBC 或其它类似的框架,你应该能理解根据不同条件拼接 SQL 语句有多痛苦,例如拼接时要确保不能忘记添加必要的空格,还要注意去掉列表最后一个列名的逗号。利用动态 SQL,可以彻底摆脱这种痛苦。
使用动态 SQL 并非一件易事,但借助可用于任何 SQL 映射语句中的强大的动态 SQL 语言,MyBatis 显著地提升了这一特性的易用性。
如果你之前用过 JSTL 或任何基于类 XML 语言的文本处理器,你对动态 SQL 元素可能会感觉似曾相识。在 MyBatis 之前的版本中,需要花时间了解大量的元素。借助功能强大的基于 OGNL 的表达式,MyBatis 3 替换了之前的大部分元素,大大精简了元素种类,现在要学习的元素种类比原来的一半还要少。
if
choose (when, otherwise)
trim (where, set)
foreach
if
<select id="findActiveBlogLike"
resultType="Blog">
SELECT * FROM BLOG WHERE 1 = 1
<if test="title != null">
AND title like #{title}
</if>
<if test="author != null and author.name != null">
AND author_name like #{author.name}
</if>
</select>
choose (when, otherwise)
有时候,我们不想使用所有的条件,而只是想从多个条件中选择一个使用。针对这种情况,MyBatis 提供了 choose 元素,它有点像 Java 中的 switch 语句。
“满足了一个条件之后就break了”只会进一个
<select id="findActiveBlogLike"
resultType="Blog">
SELECT * FROM BLOG WHERE state = ‘ACTIVE’
<choose>
<when test="title != null">
AND title like #{title}
</when>
<when test="author != null and author.name != null">
AND author_name like #{author.name}
</when>
<otherwise>
AND featured = 1
</otherwise>
</choose>
</select>
trim、where、set
where元素只会在子元素返回任何内容的情况下才插入 “WHERE” 子句。而且,若子句的开头为 “AND” 或 “OR”,
where
元素也会将它们去除。
<select id="findActiveBlogLike"
resultType="Blog">
SELECT * FROM BLOG
<where>
<if test="state != null">
state = #{state}
</if>
<if test="title != null">
AND title like #{title}
</if>
<if test="author != null and author.name != null">
AND author_name like #{author.name}
</if>
</where>
</select>
上面实际是:
如果 where元素与你期望的不太一样,你也可以通过自定义 trim 元素来定制 where元素的功能。比如,和 where 元素等价的自定义 trim 元素为:
<trim prefix="WHERE" prefixOverrides="AND |OR ">
...
</trim>
prefixOverrides属性会忽略通过管道符分隔的文本序列(注意此例中的空格是必要的)。上述例子会移除所有 prefixOverrides 属性中指定的内容,并且插入 prefix属性中指定的内容。
用于动态更新语句的类似解决方案叫做
set
。
set
元素可以用于动态包含需要更新的列,忽略其它不更新的列。比如这个例子中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 元素等价的自定义 trim元素吧:(注意,我们覆盖了后缀值设置,并且自定义了前缀值。)
<trim prefix="SET" suffixOverrides=",">
...
</trim>
所谓的动态SQL,本质还是SQL语句,只是我们可以在SQL层面,去执行一个逻辑代码
SQL片段
有的时候,我们可能将一些公共的部分抽取出来,方便复用。
-
使用SQL标签抽取公共的部分
<sql id="if-title"> <if test="title != null"> title = #{title} </if> </sql>
-
在需要使用的地方使用include标签引用即可
<select id="query" resultMap="Student" parameterType="map"> select * from student <where> <include refid="if-title"></include> </where> </select>
注意事项:
- 最好基于单表来定义SQL片段
- 不要存在where标签
foreach
动态 SQL 的另一个常见使用场景是对集合进行遍历(尤其是在构建 IN 条件语句的时候)。比如:
<select id="selectPostIn" resultType="domain.blog.Post">
SELECT *
FROM POST P
<where>
<foreach item="item" index="index" collection="list"
open="ID in (" separator="," close=")" nullable="true">
#{item}
</foreach>
</where>
</select>
foreach
元素的功能非常强大,它允许你指定一个集合,声明可以在元素体内使用的集合项(item)和索引(index)变量。它也允许你指定开头与结尾的字符串以及集合项迭代之间的分隔符。这个元素也不会错误地添加多余的分隔符,看它多智能!
提示
你可以将任何可迭代对象(如 List、Set 等)、Map 对象或者数组对象作为集合参数传递给
foreach
。当使用可迭代对象或者数组时,index 是当前迭代的序号,item 的值是本次迭代获取到的元素。当使用 Map 对象(或者 Map.Entry 对象的集合)时,index 是键,item 是值。
动态SQL就是在拼接SQL语句,只要保证SQL的正确性,按照SQL的格式,来排列组合就可以了。
建议先写出完整的SQL,保证正确性,再去对应的修改成为动态SQL即可。
13、缓存
13.1、简介
查询:需要连接数据库,如果查询一次,那么就需要连接数据一次。这样就比较耗费资源
如果说一次查询的结果,给它暂存在一个可以直接取到的地方(内存) 这样的数据称之为缓存
这样我们再次查询相同数据的时候,直接走缓存,就不用走数据库了。这样速度也很快。
-
什么是缓存【Cache】
- 存在内存中的临时数据
- 将用户经常查询的数据放在缓存(内存)中,用户去查询数据就不用从磁盘上(关系型数据库数据文件)查询,从缓存中查询,从而提高查询效率,解决了高并发系统的性能问题。
-
为什么使用缓存
- 减少和数据库的交互次数,减少系统开销,提高系统效率。
-
什么样的数据能使用缓存
- 经常查询并且不经常改变的数据
13.2、Mybatis缓存
- MyBatis包含一个非常强大的查询缓存特性,它可以非常方便地定制和配置缓存。缓存可以极大的提升查询效率。
-
MyBatis系统中默认定义了两级缓存:
一级缓存
和
二级缓存
- 默认情况下,只有一级缓存开启。(SqlSession级别的缓存,也称为本地缓存)
- 二级缓存需要手动开启和配置,他是基于namespace级别的缓存。
- 为了提高扩展性,MyBatis定义了缓存接口Cache。我们可以通过实现Cache接口来自定义二级缓存
13.3、一级缓存
-
级缓存也叫本地缓存:
-
与数据库同一次会话期间查询到的数据会放在本地缓存中。
-
以后如果需要获取相同的数据,直接从缓存中拿,没必须再去查询数据库;
-
测试步骤:
-
开启日志
-
测试在一个sqlsession中查询两次相同记录
public void getUserById() { SqlSession sqlSession = MybatisUtils.getSqlSession(); UserMapper mapper = sqlSession.getMapper(UserMapper.class); User user = mapper.getUserById(1); System.out.println(user); System.out.println("================================="); User user2 = mapper.getUserById(1); System.out.println(user2); System.out.println(user == user2); sqlSession.close(); }
-
查看日志输出
可以看到SQL只执行了一次。并且两次打印的结果是相等的。
修改上面第二个查询,传递的参数为”2″,查看日志信息:(可以跟上面查看对比就得知是没有缓存的)
缓存失效的情况:
-
查询不同的东西
-
增删改操作,可能会改变原来的数据库,所以必定会刷新缓存
-
查询不同的Mapper.xml
-
手动清理缓存
public void getUserById() { SqlSession sqlSession = MybatisUtils.getSqlSession(); UserMapper mapper = sqlSession.getMapper(UserMapper.class); User user = mapper.getUserById(1); System.out.println(user); System.out.println("================================="); sqlSession.clearCache();//手动清理缓存 User user2 = mapper.getUserById(1); System.out.println(user2); System.out.println(user == user2); sqlSession.close(); }
小结:一级缓存默认是开启的,只在一次sqlsession中有效,也就是拿到连接到关闭连接的这个区间端。
一级缓存就是一个Map
13.4、二级缓存
- 二级缓存也叫全局缓存,一级缓存作用域太低了,所以诞生了二级缓存
- 基于namespace级别的缓存,一个名称空间,对应一个二级缓存
-
工作机制
- 一个会话查询一条数据,这个数据就会被放在当前会话的一级缓存中;
- 如果当前会话关闭了,这个会话对应的一级缓存就没了;但是我们想要的是,会话关闭了,一级缓存中的数据被保存到二级缓存中;
- 新的会话查询信息,就可以从二级缓存中获取内容;
- 不同的mapper查出的数据会放在自己对应的缓存(map)中;
步骤:
-
开启全局缓存
默认就是开启的
<settings> <setting name="logImpl" value="STDOUT_LOGGING"/> <!--显示的开启全局缓存--> <setting name="cacheEnabled" value="true"/> </settings>
-
在要使用的二级缓存的Mapper.xml中开启
<!--在当前Mapper.xml中使用二级缓存--> <cache/>
也可以自定义一下参数
<!--在当前Mapper.xml中使用二级缓存--> <cache eviction="FIFO" flushInterval="60000" size="512" readOnly="true"/>
小结:
- 只要开启了二级缓存,在同一个Mapper下就有效
- 所有的数据都会先放在一级缓存中
- 只有当会话提交,或者关闭的时候,才会提交到二级缓冲中
13.5、缓存原理
13.6、自定义缓存-ehcache
Ehcache是一种广泛使用的开源Java分布式缓存。主要面向通用缓存
要在程序中使用ehcache,首先要导入jar包
<!-- https://mvnrepository.com/artifact/org.mybatis.caches/mybatis-ehcache -->
<dependency>
<groupId>org.mybatis.caches</groupId>
<artifactId>mybatis-ehcache</artifactId>
<version>1.1.0</version>
</dependency>
在mapper中指定ehcache缓存实现
<cache type="org.mybatis.caches.ehcache.EhcacheCache"/>