SpringBoot 数据访问(MyBatis)

SpringBoot 数据访问(MyBatis)

向 SQL 语句传参

#{} 形式

#{}:如果传过来的值是字符串类型。那两边会自动加上 单引号。当传递给 #{} 的参数值是非字符串类型(如整数、浮点数、布尔值等),MyBatis 不会为这些值添加引号。

#{ key }原理: 占位符 + 赋值 先 emp_id = ?,  然后 ? = 赋值

${} 形式

${}:它会直接将传过来变量的值替换到 SQL 语句中。

${ key }: 字符串拼接 " emp_id  = " + id

通常不会采用 ${} 的方式传值。一个特定的适用场景是:通过Java程序动态生成数据库表,表名部分需要Java程序通过参数传入;而JDBC对于表名部分是不能使用问号占位符的,此时只能使用 ${}
.
结论:动态的是值就是用 #{},动态变化的部分是诸如容器名、标签、列名、SQL 关键字等非普通值的情况时,则需要使用 ${} 进行拼接

传入单个简单类型参数

单个简单类型参数,在 #{} 中可以随意命名,但是没有必要。通常还是使用和接口方法参数同名。

  • Mapper 接口中抽象方法的声明
Employee selectEmployee(Integer empId);
  • SQL语句
<select id="selectEmployee" resultType="com.atguigu.mybatis.entity.Employee">select emp_id empId,emp_name empName,emp_salary empSalary from t_emp where emp_id=#{empId}
</select>

传入实体类型参数

mapper 接口中的方法参数为实体类对象时,此时可以使用 ${}#{},通过访问实体类对象中的 属性名 获取属性值,注意${}需要手动加单引号
.
原理:Mybatis会根据#{}中传入的数据,加工成 getXxx()方法【pojo 类中必须有 get 方法】,通过反射在实体类对象中调用这个 get 方法,从而获取到对应的数据。填充到 #{} 解析后的问号占位符这个位置。

  • pojo
public class Employee {private Integer empId;private String empName;private Double empSalary;... get|set
}
  • Mapper 接口中抽象方法的声明
int insertEmployee(Employee employee);
  • SQL语句
<insert id="insertEmployee">insert into t_emp(emp_name,emp_salary) values(#{empName},#{empSalary})
</insert>

传入多个简单类型参数

方案1:注解指定 @Param 注解 指定多个简单参数的 key。 key = @Param("value值") 可以理解成别名 [推荐]
.
方案2:mybatis 默认机制

  • arg0 arg1… 形参从左到右依次对应 (name, salary) 【name-> key = arg0】 【salary -> key = arg1
  • param1 param2… (name, salary) 【name-> key = param1】 【 salary -> key = param2
  • Mapper 接口中抽象方法的声明
int updateEmployee(@Param("empId") Integer empId,@Param("empSalary") Double empSalary);
  • SQL 语句
<update id="updateEmployee">update t_emp set emp_salary=#{empSalary} where emp_id=#{empId}
</update>

传入 Map 类型参数

有很多零散的参数需要传递,但是没有对应的实体类类型可以使用。使用@Param 注解一个一个传入又太麻烦了。所以都封装到Map中。
.
使用 map:手动创建map集合,将这些数据放在map中,只需要通过${}#{}访问map集合的键就可以获取相对应的值,

  • Mapper 接口中抽象方法的声明
int updateEmployeeByMap(Map<String, Object> paramMap);
  • SQL语句
<update id="updateEmployeeByMap">update t_emp set emp_salary=#{empSalaryKey} where emp_id=#{empIdKey}</update>
  • 测试类
private SqlSession session;
//junit5会在每一个@Test方法前执行@BeforeEach方法
@BeforeEach
public void init() throws IOException {session = new SqlSessionFactoryBuilder().build(Resources.getResourceAsStream("mybatis-config.xml")).openSession();
}@Test
public void testUpdateEmpNameByMap() {EmployeeMapper mapper = session.getMapper(EmployeeMapper.class);Map<String, Object> paramMap = new HashMap<>();//设置要传入的 map 的 key 和 valueparamMap.put("empSalaryKey", 999.99);paramMap.put("empIdKey", 5);//把 map 传递进去int result = mapper.updateEmployeeByMap(paramMap);System.out.println("result = " + result);
}//junit5会在每一个@Test方法后执行@@AfterEach方法
@AfterEach
public void clear() {session.commit();session.close();
}

@Param 取别名

在 MyBatis 中,@Param 是一个注解,它主要用于在 Mapper 接口的方法参数上指定参数名。

  • UserMapper 接口
public interface UserMapper {/*** 验证登录 (@Param注解)* @param username* @param password* @return*/User checkLoginByParam(@Param("username") String username, @Param("password") String password);}
  • UserMapper.xml
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapperPUBLIC "-//mybatis.org//DTD Mapper 3.0//EN""http://mybatis.org/dtd/mybatis-3-mapper.dtd"><mapper namespace="com.atguigu.mybatis.mapper.UserMapper"><!--User checkLoginByParam(@Param("username") String username, @Param("password") String password);--><!--这种情况会以@Param的值为 key, value 就是 后面的参数或者可以以 param1, param2 为 key--><select id="checkLoginByParam" resultType="User">select * from t_user where username = #{param1} and password = #{param2};</select>
</mapper>

SQL 语句返回参数

返回参数概述

数据输出总体上有两种形式:

  • 增删改操作返回的受影响行数:直接使用 int 或 long 类型接收即可
  • 查询操作的查询结果
    .

我们需要做的是,指定查询的输出数据类型即可!
并且插入场景下,实现主键数据回显示!

返回单个简单类型

retultType = 类的全限定名 | 别名:声明返回的类型

  • Mapper 接口中的抽象方法
int selectEmpCount();
  • SQL 语句
//这里 resultType 本来返回的是 java.lang.Integer 主类可以简写为 int
<select id="selectEmpCount" resultType="int">select count(*) from t_emp
</select>

别名问题

  • 基本数据类型 int double... -> _int _double...
  • 包装数据类型 Integer Double... -> int(或integer) double...
  • 集合容器类型 Map LIst HashMap.. -> 小写即可 map list...
  • 自定义类:使用<typeAliases> 标签

返回实体类对象

查询:返回单个实体类型,要求列名和属性名一致。才能进行实体类的属性映射

  • 解决方法1:给字段属性起别名
  • 解决方法2:在配置文件配置驼峰映射 自动进行驼峰映射 emp_id -> empId
  • Mapper 接口的抽象方法
Employee selectEmployee(Integer empId);
  • SQL 语句
<!-- 编写具体的SQL语句,使用id属性唯一的标记一条SQL语句 -->
<!-- resultType属性:指定封装查询结果的Java实体类的全类名 除非起别名 -->
<select id="selectEmployee" resultType="com.atguigu.mybatis.entity.Employee"><!-- Mybatis负责把SQL语句中的#{}部分替换成“?”占位符 --><!-- 给每一个字段设置一个别名,让别名和Java实体类中属性名一致 -->select emp_id empId,emp_name empName,emp_salary empSalary from t_emp where emp_id=#{maomi}</select>

返回 Map 类型

适用于SQL查询返回的各个字段综合起来并不和任何一个现有的实体类对应,没法封装到实体类对象中。能够封装成实体类类型的,就不使用Map类型。
列名就是 key , 查询出的列的结果就是 value

  • Mapper 接口的抽象方法
Map<String,Object> selectEmpNameAndMaxSalary();
  • SQL语句
<!-- Map<String,Object> selectEmpNameAndMaxSalary(); -->
<!-- 返回工资最高的员工的姓名和他的工资 -->
<select id="selectEmpNameAndMaxSalary" resultType="map">SELECTemp_name 员工姓名,emp_salary 员工工资,(SELECT AVG(emp_salary) FROM t_emp) 部门平均工资FROM t_emp WHERE emp_salary=(SELECT MAX(emp_salary) FROM t_emp)
</select>
  • 测试类
@Test
public void testQueryEmpNameAndSalary() {EmployeeMapper employeeMapper = session.getMapper(EmployeeMapper.class);Map<String, Object> resultMap = employeeMapper.selectEmpNameAndMaxSalary();Set<Map.Entry<String, Object>> entrySet = resultMap.entrySet();for (Map.Entry<String, Object> entry : entrySet) {//key:就是列名员工姓名, 员工工资, 部门平均工资String key = entry.getKey();//value: 就是查询出来的值 jerry, 999.9 659Object value = entry.getValue();/*部门平均工资=659.363333333员工姓名=jerry员工工资=999.99*/log.info(key + "=" + value);}
}

返回 List 类型

查询结果返回多个实体类对象,希望把多个实体类对象放在List 集合中返回。此时不需要任何特殊处理,resultType 不需要指定集合类型, 只需要指定泛型即可也就是 实体类的类型。每一条记录封装成一个对象。然后全部放进 List 集合

  • Mapper 接口中抽象方法
List<Employee> selectAll();
  • SQL 语句
<!-- List<Employee> selectAll(); -->
<select id="selectAll" resultType="com.atguigu.mybatis.entity.Employee">select emp_id empId,emp_name empName,emp_salary empSalaryfrom t_emp
</select>
  • 测试
@Test
public void testSelectAll() {EmployeeMapper employeeMapper = session.getMapper(EmployeeMapper.class);List<Employee> employeeList = employeeMapper.selectAll();for (Employee employee : employeeList) {System.out.println("employee = " + employee);}
}

返回自增主键

Mybatis是将自增主键的值设置到实体类对象中,而不是以 Mapper 接口方法返回值的形式返回。

  • useGeneratedKeys = true:告诉MyBatis在执行插入操作后,要尝试获取由数据库自动生成的键值(通常是主键)
  • keyProperty = "...":指定主键在实体类对象中对应的属性名,Mybatis会将拿到的主键值存入这个属性
  • Mapper 接口中抽象方法
int insertEmployee(Employee employee);
  • SQL 语句
<!-- int insertEmployee(Employee employee); -->
<!-- useGeneratedKeys属性告诉MyBatis在执行插入操作后,要尝试获取由数据库自动生成的键值(通常是主键)-->
<!-- keyProperty属性可以指定主键在实体类对象中对应的属性名,Mybatis会将拿到的主键值存入这个属性 -->
<insert id="insertEmployee" useGeneratedKeys="true" keyProperty="empId">insert into t_emp(emp_name,emp_salary)values(#{empName},#{empSalary})
</insert>
  • 测试类
@Test
public void testSaveEmp() {EmployeeMapper employeeMapper = session.getMapper(EmployeeMapper.class);Employee employee = new Employee();employee.setEmpName("john");employee.setEmpSalary(666.66);employeeMapper.insertEmployee(employee);//自增主键返回给了 empIdSystem.out.println("employee.getEmpId() = " + employee.getEmpId());
}

插入非自增长型主键

对于不支持自增主键的数据库(比如 Oracle),或者当你需要使用字符串类型的主键(如UUID)时,你可以使用 MyBatisselectKey 元素。
.
在插入记录之前,selectKey 元素会先运行。它会生成一个主键值,并将其设置到你的对象属性中。然后,MyBatis 才会执行插入操作。

.
这种做法非常适合使用 UUID 作为主键的情况。当然,生成主键的方法不止一种,你也可以在 Java 代码中生成 UUID 并手动设置到对象的属性里。不过,根据你的具体需求和场景,选择最合适的生成方式是非常重要的。
.
简单来说,selectKey 就是先帮你生成一个主键,然后MyBatis再用这个主键去插入新记录。

  • <selectKey>:帮你生成一个主键,然后MyBatis再用这个主键去插入新记录。
  • order = "before" | "after">: sql语句是在插入语句之前还是之后执行
  • resultType = ...:返回值类型
  • keyProperty = ...:查询结果给哪个属性赋值
  • SQL 语句
   <!--期望, 非自增长大的主键, 交给 mybatis 帮助我们维护--><insert id="insertTeacher"><!--插入之前, 先指定一段sql语句, 生成一个主键值order="before | after" sql语句是在插入语句之前还是之后执行resultType = 返回值类型keyProperty = 查询结果给哪个属性赋值--><selectKey order="BEFORE" resultType="string" keyProperty="tId"><!-- 把 UUID 中 - 换成空字符-->select REPLACE(UUID(),'-','');</selectKey>INSERT INTO teacher (t_id, t_name)VALUES(#{tId}, #{tName});</insert>

实体类属性和数据库字段不对应解决方法总结

返回单个实体类型,要求列名和属性名一致。才能进行实体类的属性映射

  • 规则要求数据库表字段命名方式:单词_单词
  • 规则要求Java实体类属性名命名方式:首字母小写的驼峰式命名

实体类 和 数据库字段

tId 对应 t_id
tName 对应 t_Name

解决方法一

方案1:起别名 select t_id tId, t_name tName from teacher where t_id = #{tId}

<select id="queryById" resultType="teacher">select t_id tId, t_name tName from teacher where t_id = #{tId}
</select>

解决方法二

propertiesyaml 配置文件开启驼峰式映射

mybatis:configuration:map-underscore-to-camel-case: true # 开启驼峰映射

~~~xml
<select id="queryById" resultType="teacher">select * from teacher where t_id = #{tId}
</select>

解决方法三

使用自定义映射

<!--resultMap: 设置自定义的映射关系id: 唯一标识type: 处理映射关系的实体类的类型常用的标签:id: 处理主键和实体类中实现的映射关系result: 处理普通字段和实体类中属性的映射关系column: 设置映射关系中的字段名, 必须是SQL查询出的某个字段property: 设置映射关系中的属性的属性名, 必须是处理的实体类类型中的属性名
-->
<resultMap id="tMap" type="teacher"><id column="t_id" property="tId"/><result column="t_name" property="tName"/>
</resultMap><select id="queryById" resultType="tMap">select * from teacher where t_id = #{tId}
</select>

MyBatis 多表映射

实体类设计方案

对一

例如一个订单对应一个顾客*
.
实体类设计:对一关系下,类中只要包含单个对方对象类型属性即可!

//顾客表
public class Customer {private Integer customerId;private String customerName;}//订单表
public class Order {private Integer orderId;private String orderName;private Customer customer;// 体现的是对一的关系: 包含单个对方类型对象}  
对多

例如一个顾客对应多个订单
.
实体类设计:对多关系下,类中只要包含对方类型集合属性即可!

public class Customer {private Integer customerId;private String customerName;private List<Order> orderList;// 体现的是对多的关系,包含对方集合类型
}public class Order {private Integer orderId;private String orderName;}
总结
  • 对一,属性中包含对方对象
  • 对多,属性中包含对方对象集合

只有真实发生多表查询时,才需要设计和修改实体类,否则不提前设计和修改实体类!

无论多少张表联查,实体类设计都是两两考虑!【就是一次考虑两张表之间的关系就行】

  • 比如 第一张表和第二张表。第二张表和第三张表这样
    .

在查询映射的时候,只需要关注本次查询相关的属性!例如:查询订单和客户的关系。不要关注客户对订单的关系。

自定义映射 <resultMap>

<!--resultMap: 设置自定义的映射关系id: 唯一标识type: 处理映射关系的实体类的类型常用的标签:id: 处理主键和实体类中实现的映射关系result: 处理普通字段和实体类中属性的映射关系column: 设置映射关系中的字段名, 必须是SQL查询出的某个字段property: 设置映射关系中的属性的属性名, 必须是处理的实体类类型中的属性名
-->
<resultMap id="tMap" type="teacher"><id column="t_id" property="tId"/><result column="t_name" property="tName"/>
</resultMap><select id="queryById" resultType="tMap">select * from teacher where t_id = #{tId}
</select>

对象属性赋值 <association> [ 对一 ]

    <!--自定义映射关系, 定义嵌套对象的映射关系--><resultMap id="orderMap" type="order"><!--第一层属性 order 对象--><!-- order 的主键 id 标签--><id column="order_id" property="orderId" /><!--普通列--><result column="order_name" property="orderName" /><result column="order_Id" property="orderId" />就是实体类里面还有个对象属性<!--对象属性赋值property 表里对象属性名javaType 表里对象类型--><association property="customer" javaType="Customer"><id column="customer_id" property="customerId" /><result column="customer_name" property="customerName" /></association></resultMap>

在这里插入图片描述

集合属性赋值 <collection> [ 对多 ]

<resultMap id="customerMap" type="customer"><id column="customer_id" property="customerId"/><result column="customer_name"  property="customerName"/><!--<association property="" 对一的对象进行赋值--><!--给集合属性赋值property 集合属性名ofType 集合的泛型类型--><collection property="orderList" ofType="order"><id column="order_id" property="orderId" /><result column="order_name" property="orderName" /><result column="customer_id" property="customerId" />//注意这里不要考虑对一设置的对象属性 Customer</collection></resultMap>

在这里插入图片描述

对一映射示例

需求

根据ID查询订单,以及订单关联的用户的信息!

  • 实体类
//Customer
@Data
public class Customer {private Integer customerId;private String customerName;}//Order
@Data
public class Order {private Integer orderId;private String orderName;private Integer customerId;//一个订单 对应一个客户 对一private Customer customer;}
  • Mapper 接口
public interface OrderMapper {//根据id查询订单信息和订单对应的客户Order queryById(Integer id);}
  • mapper.xml
<!-- namespace = 接口的全限定名-->
<mapper namespace="com.atguigu.mapper.OrderMapper"><!--自定义映射关系, 定义嵌套对象的映射关系--><resultMap id="orderMap" type="order"><!--第一层属性 order 对象--><!-- order 的主键 id 标签--><id column="order_id" property="orderId" /><!--普通列--><result column="order_name" property="orderName" /><result column="order_Id" property="orderId" /><!--对象属性赋值property 表里对象属性名javaType 表里对象类型--><association property="customer" javaType="Customer"><id column="customer_id" property="customerId" /><result column="customer_name" property="customerName" /></association></resultMap><!--Order queryOrderById(Integer id);--><select id="queryById" resultMap="orderMap">SELECT * FROM t_order tor JOIN t_customer turON tor.customer_id = tur.customer_idWHERE tor.order_id = #{id};</select>
</mapper>
  • 测试
public class MybatisTest {private SqlSession session;@BeforeEachpublic void init() throws IOException {session = new SqlSessionFactoryBuilder().build(Resources.getResourceAsReader("mybatis-config.xml")).openSession();}@Testpublic void testToOne() {//查询订单和对应的客户OrderMapper mapper = session.getMapper(OrderMapper.class);Order order = mapper.queryById(1);System.out.println(order);System.out.println(order.getCustomer());}@AfterEachpublic void clean() {session.close();}}

对多映射示例

  • pojo
//Customer
@Data
public class Customer {private Integer customerId;private String customerName;//一个客户对应多个订单//对多: 装对方类型的集合即可private List<Order> orderList;}//Order
@Data
public class Order {private Integer orderId;private String orderName;private Integer customerId;//一个订单 对应一个客户 对一private Customer customer;}
  • Mapper 接口
public interface CustomerMapper {//查询所有客户信息以及客户对应的订单信息List<Customer> queryList();}
  • mapper.xml
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapperPUBLIC "-//mybatis.org//DTD Mapper 3.0//EN""http://mybatis.org/dtd/mybatis-3-mapper.dtd"><!-- namespace = 接口的全限定名-->
<mapper namespace="com.atguigu.mapper.CustomerMapper"><resultMap id="customerMap" type="customer"><id column="customer_id" property="customerId"/><result column="customer_name"  property="customerName"/><!--<association property="" 对一的对象进行赋值--><!--给集合属性赋值property 集合属性名ofType 集合的泛型类型--><collection property="orderList" ofType="order"><id column="order_id" property="orderId" /><result column="order_name" property="orderName" /><result column="customer_id" property="customerId" /><!-- customer 需不需要赋值, 不需要--></collection></resultMap><select id="queryList" resultMap="customerMap">SELECT * FROM t_order torJOIN t_customer turON tor.customer_id = tur.customer_id</select>
</mapper>

在这里插入图片描述

多表映射优化 <autoMappingBehavior>


MyBatis 提供了三种自动映射列到字段或属性的模式:

  • NONE:关闭自动映射功能。
  • PARTIAL 【默认】:仅自动映射未定义嵌套结果映射的字段。
  • FULL:可自动映射包括嵌套结果集在内的任何复杂结果。
    .

MyBatis 中,将 autoMappingBehavior 设为full后,进行多表关联查询并使用 resultMap 映射时,若 列名属性名 符合命名映射规则(二者相等,或开启驼峰映射 规则也适用),对应的 result 标签 便 可省 略,系统能自动完成映射。

  • 修改 yaml 或者 properties
mybatis:configuration:auto-mapping-behavior: full # 多表映射可以自动省略符合驼峰式的 result 标签内容
  • 修改 teacherMapper.xml
<resultMap id="teacherMap" type="teacher"><id property="tId" column="t_id" /><!-- 开启自动映射,并且开启驼峰式支持!可以省略 result!-->
<!--        <result property="tName" column="t_name" />--><collection property="students" ofType="student" ><id property="sId" column="s_id" />
<!--            <result property="sName" column="s_name" />--></collection>
</resultMap>

MyBatis 动态语句

if 和 where 标签 【多条件动态判断】


<if>

  • 通过 test 属性 对传入的参数做比较运算。
  • 当运算结果为 true 时,会将标签内的 sql 语句进行拼接;若结果为 false,则不拼接标签内部语句。
  • 对于大于和小于的比较符号,不推荐直接写,建议使用实体符号(如 &gt; 表示大于,&lt; 表示小于)。

.
<where>

  • 自动添加 / 去除 where 关键字:只要其内部有任何一个 if 条件满足,就会自动添加 where 关键字;若所有 if 条件都不满足,会自动去掉 where 关键字。
  • 自动去除多余逻辑关键字:能够自动去掉多余的 andor 关键字,以此避免因条件不满足等情况出现语法错误,确保生成的 sql 语句符合语法规范。
<!-- namespace = 接口的全限定名-->
<mapper namespace="com.atguigu.mapper.EmployeeMapper"><!--List<Employee> query(@Param("name") String name,@Param("salary") Double salary);假如两个都满足 where emp_name = #{name} and emp_salary = #{salary}假如第一个满足 where emp_name = #{name}假如第一个满足第二个不满足 where and emp_salary = #{salary} 错误假如都不满足 where 错误所以需要多弄一个 where 标签。自动处理这些情况--><select id="query" resultType="employee">select * from t_emp<where><if test="name != null">emp_name = #{name}</if><if test="salary != null and salary &gt; 100">and emp_salary = #{salary}</if></where></select></mapper>

set 标签【更新信息】


<set>

  • 自动去掉多余的,
  • 自动添加 set 关键字
  <!--根据员工 id 更新员工的数据, 我们要求 传入的 name 和 salary 不为 null 的才更新int update(Employee employee);全部满足: set emp_name = #{empNamee}, emp_salary = #{empSalary} 没问题第一个满足: set emp_name = #{empNamee}, 多了个,第二个满足: set emp_salary = #{empSalary} 没问题都不满足: set 语法错误所以需要 set 标签自动处理这些情况set:1.自动去掉多余的,2.自动添加set关键字--><update id="update">update t_emp<set><if test="empName != null">emp_name = #{empName}</if><if test="empSalary">emp_salary = #{empSalary}</if></set>where emp_id = #{empId}</update>

choose / when / otherwise 标签【多条件选一】


在多个分支条件中,仅执行一个。

  • 从上到下依次执行条件判断
  • 遇到的第一个满足条件的分支会被采纳
  • 被采纳分支后面的分支都将不被考虑
  • 如果所有的 when test 分支都不满足,那么就执行 otherwise 分支
<!-- List<Employee> selectEmployeeByConditionByChoose(Employee employee) -->
<select id="selectEmployeeByConditionByChoose" resultType="com.atguigu.mybatis.entity.Employee">select emp_id,emp_name,emp_salary from t_empwhere<choose><when test="empName != null">emp_name=#{empName}</when><when test="empSalary &lt; 3000">emp_salary &lt; 3000</when><otherwise>1=1</otherwise></choose><!--第一种情况:第一个when满足条件 where emp_name=?第二种情况:第二个when满足条件 where emp_salary < 3000第三种情况:两个when都不满足 where 1=1 执行了otherwise-->
</select>

foreach 标签【批量操作】


  • collection属性:要遍历的集合
  • item属性:遍历集合的过程中能得到每一个具体对象,在item属性中设置一个名字,将来通过这个名字引用遍历出来的对象
  • separator属性:指定当foreach标签的标签体重复拼接字符串时,各个标签体字符串之间的分隔符
  • open属性:指定整个循环把字符串拼好后,字符串整体的前面要添加的字符串
  • close属性:指定整个循环把字符串拼好后,字符串整体的后面要添加的字符串

foreach 标签中的 collection 属性注意事项

在接口里,若对于 List 类型 的参数没有使用 @Param 注解去指定一个具体名字,此时在 foreach 标签的 collection 属性中,默认能够用 “collection” 或者 “list” 来引用这个 List 集合,我们可以从异常信息中发现这一情况,比如出现如下异常信息:

Parameter 'empList' not found. Available parameters are [arg0, collection, list]

不过在实际开发过程中,为防止因这种比较隐晦的表达方式而产生误会,更建议大家使用 @Param 注解清晰明确地声明变量的名称,之后在 foreach 标签的 collection 属性 里,按照 @Param 注解所指定的名称去引用传入的参数。*

如果需要多次遍历 SQL 语句注意事项

需要设置 allowMultiQueries=true

 <dataSource type="POOLED"><!-- 建立数据库连接的具体信息 --><property name="driver" value="com.mysql.cj.jdbc.Driver"/>//这里设置 在 url 后面添加 allowMultiQueries=true<property name="url" value="jdbc:mysql://localhost:3306/mybatis-example?allowMultiQueries=true"/><property name="username" value="root"/><property name="password" value="Ting123321"/></dataSource>
  • Mapper 接口
	//根据 id 的批量查询List<Employee> queryBatch(@Param("ids") List<Integer> id);//根据 id 批量删除List<Employee> deleteBatch(@Param("ids") List<Integer> ids);//批量添加int insertBatch(@Param("list") List<Employee> employeeList);//批量修改int updateBatch(@Param("list") List<Employee> employeeList);

Mapper.xml

   	<!--根据 id 批量查询--><select id="queryBatch" resultType="Employee">select * from t_empwhere emp_id in<!-- id 就是 从 ids 集合中拿值, ids 表示 list 集合--><!--(1,2,3)--><foreach collection="ids" open="(" separator="," close=")" item="id">#{id}</foreach></select><!--根据id的批量删除--><delete id="deleteBatch">delete from t_emp where id in<!--(1,2,3)--><foreach collection="ids" open="(" separator="," close=")" item="id">#{id}</foreach></delete><!--根据id的批量插入--><insert id="insetBatch">insert into t_emp (emp_name, emp_salary)values<!--('xx', 200), ('xx', 200), ('xx', 200)--><foreach collection="list" separator="," item="employee">(#{employee.empName}, #{employee.empSalary})</foreach></insert><!--根据id的批量修改--><!--如果一个标签涉及多个语句! 需要设置允许指定多语句【把sql语句遍历多遍】 需要设置allowMultQueries = true --><update id="updateBatch"><foreach collection="list" item="emp"><!--update t_emp set emp_name = #{emp.empName}, emp_salary = #{emp.empSalary}where emp_id = #{emp.empId};update t_emp set emp_name = #{emp.empName}, emp_salary = #{emp.empSalary}where emp_id = #{emp.empId};...-->update t_emp set emp_name = #{emp.empName}, emp_salary = #{emp.empSalary}where emp_id = #{emp.empId};</foreach></update>

SQL 片段抽取


<include reifd = "指定SQL片段">

   <sql id="selectSql">select * from t_emp</sql><select id="query" resultType="employee">//这里就是抽取的SQL 等价于 select * from t_emp<include refid="selectSql" /><where><if test="name != null">emp_name = #{name}</if><if test="salary != null and salary &gt; 100">and emp_salary = #{salary}</if></where></select>

MyBatis 分页和逆向

SQL 分页回顾


查询数据

前面是索引,后面是查询几条数据

//从 0 所以开始查询 5 条数据
SELECT * FROM table LIMIT 0, 5

返回某页数据

  • 公式:limit ( (startPage-1) * pageSize, pageSize )
  • startPage要查询的页码pageSize此页面总记录数
比如
0     4     81     5     92     6     103     7      11这里返回 第二页数据 就是 
SELECT * FROM table LIMIT ( (2-1) * 4,  4)
也就是
SELECT * FROM table LIMIT (4,  4) 
刚好从索引 4 开始返回 4 条数据

分页插件 PageHelper


MyBatis 对插件进行了标准化的设计,并提供了一套可扩展的插件机制。插件可以在用于语句执行过程中进行拦截,并允许通过自定义处理程序来拦截和修改 SQL 语句、映射语句的结果等。

  • 导入依赖
<dependency><groupId>com.github.pagehelper</groupId><artifactId>pagehelper</artifactId><version>5.1.11</version>
</dependency>
  • mybatis-config.xml 配置分页插件

其中,com.github.pagehelper.PageInterceptorPageHelper 插件的名称,dialect 属性用于指定数据库类型(支持多种数据库)MyBatis 其他插件也要这么安装

<plugins><plugin interceptor="com.github.pagehelper.PageInterceptor"><property name="helperDialect" value="mysql"/></plugin>
</plugins>
@Service
public class EmpServiceImpl implements EmpService {@Autowirdprivate EmpMapper empMapper;/*** @param page 页码* @param pageSize 每页记录数*/@Overridepublic PageResult<Emp> page(Integer page, Integer pageSize) {//1. 设置分页参数 分页查询的结果封装到 Page 对象中 /**Page 是 ArrayList 的子类所以 Page 本质上是 List 类型 Page 封装了分页查询所有的信息包括总页数....**/PageHelper.startPage(page, pageSize);//2. 执行查询List<Emp> empList = empMapper.list(); //3. 解析查询结果, 并封装 Page<Emp> p = (Page<Emp>)empList;//Total 是获取总记录数 Reuslt 是获取结果列表 return new PageREsult<Emp>(p.getTotal(), p.getResult);}
}

逆向工程


ORM,即对象 - 关系映射技术,能使数据库操作更贴合面向对象思维。它分半自动、全自动两类:

  • 半自动 ORM:程序员要手动写 SQL 语句或配置文件,以此关联实体类与数据表,还得自行把查询结果转为实体对象。映射关系常用 XML 文件、注解来指定,像 MyBatis 就属此类,使用它需掌握扎实的 SQL 与数据库知识。
  • 全自动 ORM:实体类与数据表自动映射,调用 API 操作数据库时,框架自动生成、执行 SQL 语句,还能把查询结果无缝转换成实体对象,且自动优化性能。像 Hibernate、Spring Data JPA、MyBatis - Plus 等都是,上手相对容易,无需过多钻研 SQL 语法。

逆向工程

MyBatis 的逆向工程堪称开发 “利器”,它能自动产出持久层代码与映射文件。依据数据库表结构及预设参数,迅速生成实体类、Mapper.xml 文件、Mapper 接口等,助力开发者快速搭建 DAO 层,无缝切入业务开发
.
实现逆向工程主要有两条路:借助 MyBatis Generator 插件,或是利用 Maven 插件。操作时,得给定数据库连接 URL、用户名、密码、目标表名、生成文件路径等配置参数。
.
注意:逆向工程只能生成单表crud的操作,多表查询依然需要我们自己编写!

使用 MyBatisX 插件


MyBatisX 是一个 MyBatis 的代码生成插件,可以通过简单的配置和操作快速生成 MyBatis Mapper、pojo 类和 Mapper.xml 文件。下面是使用 MyBatisX 插件实现逆向工程的步骤:

第一步:安装插件

IntelliJ IDEA 中打开插件市场,搜索 MyBatisX 并安装。

第二步:IDEA 连接数据库

在这里插入图片描述
在这里插入图片描述

第三步:使用逆向插件

在这里插入图片描述
在这里插入图片描述
在这里插入图片描述

第四步:查看生成结果

在这里插入图片描述

MyBaits 配置文件解释

# 配置数据源信息
spring:datasource:driver-class-name: com.mysql.cj.jdbc.Drivertype: com.zaxxer.hikari.HikariDataSourceurl: //127.0.0.1:3306/testusername: rootpassword: 123321# 配置整合 MyBatis
mybatis:# 指定 xml 文件mapper-locations: mapper/*.xml# 给包里的类起别名: 别名就是类名小写 比如 User usertype-aliases-package: com.example.pojoconfiguration:# 多表映射可以自动省略符合驼峰式的 result 标签内容auto-mapping-behavior: full# 开启驼峰映射map-underscore-to-camel-case: true

设置类别名细节

namespace 用不了别名

mybatis:# 给包里的类起别名: 别名就是类名小写 比如 User usertype-aliases-package: com.example.pojo

在批量声明的情况下,要更改单个别名用 @Alias("别名")

@Alias("author"):public class Author{
...
}

驼峰映射

返回单个实体类的类型,要求列名和属性名一致。才能进行实体类映射
.

  • 规则要求数据库表字段命名方式:单词_单词
  • 规则要求Java实体类属性名命名方式:首字母小写的驼峰式命名

多表映射优化细节

MyBatis 提供了三种自动映射列到字段或属性的模式:

  • NONE:关闭自动映射功能。
  • PARTIAL 【默认】:仅自动映射未定义嵌套结果映射的字段。
  • FULL:可自动映射包括嵌套结果集在内的任何复杂结果。
    .

MyBatis 中,将 autoMappingBehavior 设为full后,进行多表关联查询并使用 resultMap 映射时,若 列名属性名 符合命名映射规则(二者相等,或开启驼峰映射 规则也适用),对应的 result 标签 便 可省 略,系统能自动完成映射。

# 配置整合 MyBatis
mybatis:configuration:# 多表映射可以自动省略符合驼峰式的 result 标签内容auto-mapping-behavior: full
<resultMap id="teacherMap" type="teacher"><id property="tId" column="t_id" /><!-- 开启自动映射,并且开启驼峰式支持!可以省略 result!-->
<!--        <result property="tName" column="t_name" />--><collection property="students" ofType="student" ><id property="sId" column="s_id" />
<!--            <result property="sName" column="s_name" />--></collection>
</resultMap>

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/pingmian/68627.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

SpringBoot整合Swagger UI 用于提供接口可视化界面

目录 一、引入相关依赖 二、添加配置文件 三、测试 四、Swagger 相关注解 一、引入相关依赖 图像化依赖 Swagger UI 用于提供可视化界面&#xff1a; <dependency><groupId>io.springfox</groupId><artifactId>springfox-swagger-ui</artifactI…

【ArcGIS遇上Python】批量提取多波段影像至单个波段

本案例基于ArcGIS python,将landsat影像的7个波段影像数据,批量提取至单个波段。 相关阅读:【ArcGIS微课1000例】0141:提取多波段影像中的单个波段 文章目录 一、数据准备二、效果比对二、python批处理1. 编写python代码2. 运行代码一、数据准备 实验数据及完整的python位…

[EAI-027] RDT-1B: a Diffusion Foundation Model for Bimanual Manipulation

Paper Card 论文标题&#xff1a;RDT-1B: a Diffusion Foundation Model for Bimanual Manipulation 论文作者&#xff1a;Songming Liu, Lingxuan Wu, Bangguo Li, Hengkai Tan, Huayu Chen, Zhengyi Wang, Ke Xu, Hang Su, Jun Zhu 论文链接&#xff1a;https://arxiv.org/ab…

可扩展架构:如何打造一个善变的柔性系统?

系统的构成:模块 + 关系 我们天天和系统打交道,但你有没想过系统到底是什么?在我看来,系统内部是有明确结构 的,它可以简化表达为: 系统 = 模块 + 关系 在这里,模块是系统的基本组成部分,它泛指子系统、应用、服务或功能模块。关系指模块 之间的依赖关系,简单…

【LLM】DeepSeek-R1-Distill-Qwen-7B部署和open webui

note DeepSeek-R1-Distill-Qwen-7B 的测试效果很惊艳&#xff0c;CoT 过程可圈可点&#xff0c;25 年应该值得探索更多端侧的硬件机会。 文章目录 note一、下载 Ollama二、下载 Docker三、下载模型四、部署 open webui 一、下载 Ollama 访问 Ollama 的官方网站 https://ollam…

讯飞智作 AI 配音技术浅析(二):深度学习与神经网络

讯飞智作 AI 配音技术依赖于深度学习与神经网络&#xff0c;特别是 Tacotron、WaveNet 和 Transformer-TTS 模型。这些模型通过复杂的神经网络架构和数学公式&#xff0c;实现了从文本到自然语音的高效转换。 一、Tacotron 模型 Tacotron 是一种端到端的语音合成模型&#xff…

JavaScript 进阶(下)

原型 what 首先&#xff0c;构造函数通过原型分配的函数是所有对象所 共享的。 然后&#xff0c;JavaScript 规定&#xff0c;每一个构造函数都有一个 prototype 属性&#xff0c;指向另一个对象&#xff0c;所以我们也称为原型对象 这个对象可以挂载函数&#xff0c;对象实…

Effective Objective-C 2.0 读书笔记—— 消息转发

Effective Objective-C 2.0 读书笔记—— 消息转发 文章目录 Effective Objective-C 2.0 读书笔记—— 消息转发前言消息转发机制概述动态方法解析处理dynamic的属性用于懒加载 消息转发快速消息转发完整消息转发 总结 前言 在前面我学习了关联对象和objc_msgSend的相关内容&a…

Hive:struct数据类型,内置函数(日期,字符串,类型转换,数学)

struct STRUCT&#xff08;结构体&#xff09;是一种复合数据类型&#xff0c;它允许你将多个字段组合成一个单一的值, 常用于处理嵌套数据&#xff0c;例如当你需要在一个表中存储有关另一个实体的信息时。你可以使用 STRUCT 函数来创建一个结构体。STRUCT 函数接受多个参数&…

嵌入式知识点总结 Linux驱动 (二)-uboot bootloader

针对于嵌入式软件杂乱的知识点总结起来&#xff0c;提供给读者学习复习对下述内容的强化。 目录 1.什么是bootloader&#xff1f; 2.Bootloader的两个阶段 3.uboot启动过程中做了哪些事&#xff1f; 4.uboot和内核kernel如何完成参数传递&#xff1f; 5.为什么要给内核传递…

Unbutu虚拟机+eclipse+CDT编译调试环境搭建

问题1: 安装CDT&#xff0c;直接Help->eclipse Market space-> 搜cdt , install&#xff0c;等待重启即可. 问题2&#xff1a;C变量不识别vector ’could not be resolved 这是库的头文件没加好&#xff0c;右键Properties->C Build->Enviroment&#xff0c;增加…

碳化硅MOSFET相对IGBT和超结MOSFET出现价格倒挂预示着什么

碳化硅&#xff08;SiC&#xff09;MOSFET相对于IGBT和超结MOSFET出现价格倒挂&#xff08;即SiC MOSFET单价低于传统硅基器件&#xff09;&#xff0c;这一现象反映了化合物半导体产业的深刻变革&#xff0c;并预示着技术、市场和产业链格局的多重演变。倾佳电子杨茜从技术突破…

openRv1126 AI算法部署实战之——TensorFlow TFLite Pytorch ONNX等模型转换实战

Conda简介 查看当前系统的环境列表 conda env list base为基础环境 py3.6-rknn-1.7.3为模型转换环境&#xff0c;rknn-toolkit版本V1.7.3&#xff0c;python版本3.6 py3.6-tensorflow-2.5.0为tensorflow模型训练环境&#xff0c;tensorflow版本2.5.0&#xff0c;python版本…

LabVIEW无线齿轮监测系统

本案例介绍了基于LabVIEW的无线齿轮监测系统设计。该系统利用LabVIEW编程语言和改进的天牛须算法优化支持向量机&#xff0c;实现了无线齿轮故障监测。通过LabVIEW软件和相关硬件&#xff0c;可以实现对齿轮箱振动信号的采集、传输和故障识别&#xff0c;集远程采集、数据库存储…

SpringBoot+Vue的理解(含axios/ajax)-前后端交互前端篇

文章目录 引言SpringBootThymeleafVueSpringBootSpringBootVue&#xff08;前端&#xff09;axios/ajaxVue作用响应式动态绑定单页面应用SPA前端路由 前端路由URL和后端API URL的区别前端路由的数据从哪里来的 Vue和只用三件套axios区别 关于地址栏url和axios请求不一致VueJSPS…

jQuery小游戏(一)

jQuery小游戏&#xff08;一&#xff09; 嘻嘻&#xff0c;今天我们来写个jquery小游戏吧 首先&#xff0c;我们准备一下写小游戏需要准备的佩饰&#xff0c;如果&#xff1a;图片、音乐、搞怪的小表情 这里我准备了一些游戏中需要涉及到的图片 游戏中使用到的方法 eval() 函…

H3CNE-28-VRRP

虚拟网关冗余协议&#xff0c;Virtual Router Redundancy Protocotol 三层网关冗余技术对用户网关做冗余 VRRP配置示例 接口IP配置&#xff0c;略。 R1&#xff1a; int g0/0vrrp vrid 1 virtual 192.168.1.254vrrp vrid 1 priority 105 # 1-254,越大越优先R2&#xff1a; …

私有包上传maven私有仓库nexus-2.9.2

一、上传 二、获取相应文件 三、最后修改自己的pom文件

Alfresco Content Services dockerCompose自动化部署详尽操作

Alfresco Content Services docker社区部署文档 Alfresco Content Services简介 官方说明书 https://support.hyland.com/r/Alfresco/Alfresco-Content-Services-Community-Edition/23.4/Alfresco-Content-Services-Community-Edition/Using/Content/Folder-rules/Defining-…

麒麟操作系统服务架构保姆级教程(十四)iptables防火墙四表五链和防火墙应用案例

如果你想拥有你从未拥有过的东西&#xff0c;那么你必须去做你从未做过的事情 防火墙在运维工作中有着不可或缺的重要性。首先&#xff0c;它是保障网络安全的关键防线&#xff0c;通过设置访问控制规则&#xff0c;可精准过滤非法网络流量&#xff0c;有效阻挡外部黑客攻击、恶…