1. 什么是Mybatis
Mybatis是一款优秀的持久层框架,用于简化JDBC的开发。
2. MyBatis入门
2.1 快速入门
使用Mybatis查询所有用户数据
1. 准备工作(创建springboot工程、数据库表user、实体类user)
2. 引入Mybatis的相关依赖,配置Mybatis(数据库连接信息)
3. 编写SQL语句(注解/XML)
@Mapper // 在运行时,会自动生成该接口的实现类对象(代理对象),并且将该对象交给IOC容器管理
public Interface UserMapper {
@Select("select * from user")
public Set<User> list(){};
}
2.2 JDBC介绍
JDBC:(Java DataBase Connectivity),就是使用Java语言操作关系型数据库的一套API
本质
sun公司官方定义的一套操作所有关系型数据库的规范,即接口。
各个数据库厂商去实现这套接口,提供数据库驱动jar包。
我们可以使用这套接口(JDBC)编程,真正执行的代码是驱动jar包中的实现类。
2.3 数据库连接池
数据库连接池是个容器,负责分配、管理数据库连接(Connection)
它允许应用程序重复使用一个现有的数据库连接,而不是再重新建立一个
释放空闲时间超过最大空闲时间的连接,来避免因为没有释放连接而引起的数据库连接遗漏
优势
资源重用
提升系统响应速度
避免数据库连接遗漏
标准接口:DataSource
官方(sun)提供的数据库连接池接口,由第三方组织实现此接口。
功能:获取连接
Connection getConnection() throws SQLException;
Druid(德鲁伊)
Druid连接池是阿里巴巴开源的数据库连接池项目
功能强大,性能优秀,是Java语言最好的数据库连接池之一
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>druid</artifactId>
<version>1.2.8</version>
</dependency>
3. Mybatis基本操作
3.1 删除
@Mapper
public interface EmpMapper {
@Delete("delete from emp where id = #{id}")
public int delete(Integer id);
}
注意:如果mapper接口方法形参只有一个普通类型的参数,&{...} 里面的属性名可以随便写,如:#{id}、#{value}。
预编译SQL
优势
性能更高
更安全
SQL注入
SQL注入是通过操作输入的数据来修改实现定义好的SQL语句,所以达到执行代码对服务器进行攻击的方法。
参数占位符
#{...}
执行SQL时,会将#{...}替换为?,生成预编译SQL,会自动设置参数值。
使用时机:参数传递,都使用#{...}
${...}
拼接SQL。直接将参数拼接在SQL语句中,存在SQL注入问题。
使用时机:如果对表名、列表进行动态设置时使用。
3.2 插入
@Insert("insert into emp(username, name, gender, image, job, entrydate, dept_id, create_time, update_time)" +
"values (#{username},#{name},#{gender},#{image},#{job},#{entrydate},#{deptId},#{createTime},#{updateTime})")
public void insert(Emp emp);
新增(主键返回)
描述:在数据添加成功后,需要获取插入数据库数据的主键。
如:添加套餐数据时,还需要维护套餐菜品关系数据。
@Options(keyProperty = "id",useGeneratedKeys = true) // 会自动将生成的主键值,赋值给emp对象的id属性
@Insert("insert into emp(username, name, gender, image, job, entrydate, dept_id, create_time, update_time)" +
"values (#{username},#{name},#{gender},#{image},#{job},#{entrydate},#{deptId},#{createTime},#{updateTime})")
public void insert(Emp emp);
3.3 修改
@Insert("update emp set username = #{username},name = #{name},gender = #{gender},image = #{image}," +
"job = #{job},entrydate = #{entrydate},update_time = #{updateTime} where id = #{id}")
public void update(Emp emp);
3.4 查询
@Select("select * from emp where id = #{id}")
public Emp getById(Integer id);
数据封装
实体类属性名和数据库表查询返回的字段名一致,mybatis会自动封装。
如果实体类属性名和数据库表查询返回的字段名不一致,不能自动封装。
方案一:
给字段起别名,让别名与实体类属性一致
// 方案一:给字段起别名,让别名与实体类属性一致
@Select("select id, username, password, name, gender, image, job, entrydate," +
" dept_id deptId, create_time createTime, update_time updateTime from emp where id = #{id}")
public Emp getById(Integer id);
方案二:
通过@Results,@Result注解手动映射封装
// 方案二:通过@Results,@Result 注解手动映射封装
@Results({
@Result(column = "dept_id",property = "deptId"),
@Result(column = "create_time",property = "createTime"),
@Result(column = "update_time",property = "updateTime"),
})
@Select("select * from emp where id = #{id}")
public Emp getById(Integer id);
方案三:
开启mybatis的驼峰命名自动映射开关
mybatis.configuration.map-underscore-to-camel-case=true
条件查询
@Select("select * from emp where name like concat('%',#{name},'%') and " +
"gender = #{gender} and entrydate between #{begin} and #{end} order by update_time desc")
public List<Emp> querylist(@Param("name")String name, @Param("gender")Short gender, @Param("begin")LocalDate begin, @Param("end")LocalDate end);
参数名说明
4. XML映射文件
规范
XML映射文件的名称与Mapper接口名称一致,并且将XML映射文件和Mapper接口放置在相同包下(同包同名)
XML映射文件的namespace属性为Mapper接口全限定名一致。
XML映射文件种sql语句的id与Mapper接口中的方法名一致,并保持返回类型一致。
<!--头文件-->
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
5. 动态SQL
随着用户的输入或外部条件的变化而变化的SQL语句,我们称为动态SQL。
5.1 <if>
<if>:用于判断条件是否成立。使用test属性进行条件判断,如果条件为true,则拼接字符串
<where>:where 元素只会在子元素有内容的情况下才插入where字句。而且会自动去除字句的开头AND 或 OR
<mapper namespace="com.mdklea.mybatis.mapper.EmpMapper">
<select id="queryList" resultType="com.mdklea.mybatis.pojo.Emp">
select *
from emp
<where>
<if test="name != null">
name like concat('%', #{name}, '%')
</if>
<if test="gender != null">
and gender = #{gender}
</if>
<if test="begin != null and end != null">
and entrydate between #{begin} and #{end}
</if>
</where>
order by update_time desc
</select>
</mapper>
<set>:动态地在行首插入SET关键字,并会删掉额外的逗号。(用在update语句中)
<update id="update2">
update emp
<set>
<if test="username != null">username = #{username},</if>
<if test="name != null">name = #{name},</if>
<if test="gender != null">gender = #{gender},</if>
<if test="image != null">image = #{image},</if>
<if test="job != null">job = #{job},</if>
<if test="entrydate != null">entrydate = #{entrydate},</if>
<if test="updateTime != null">update_time = #{updateTime}</if>
</set>
where id = #{id}
</update>
5.2 <foreach>
collection:集合名称(写list)
item:集合遍历出来的元素/项
separator:每一次遍历使用的分隔符
open:遍历开始前拼接的片段
close:遍历结束后拼接的片段
<!--
collection:遍历的集合
item:遍历出来的元素
separator:分隔符
open:遍历开始前拼接的SQL片段
close:遍历结束后拼接的SQL片段
-->
<delete id="deleteByIds">
delete
from emp
where id in
<foreach collection="list" item="id" separator="," open="(" close=")">
#{id}
</foreach>
</delete>
5.3 <sql><include>
sql片段
<sql>:定义可重用的SQL片段
<include>:通过属性refid,指定包含的sql片段
标签:name,gender,数据库,笔记,学习,emp,SQL,Mybatis,id From: https://blog.csdn.net/2301_79070677/article/details/142304961