Spring boot整合mybatis实现过程图解
程序员文章站
2022-07-03 09:21:18
导入mybatis jar包右键pom.xml模拟springboot底层实现类1.定义接口@mapperpublic interface goodsdao {/** * 基于商品id删除商品 * @...
导入mybatis jar包
右键pom.xml
模拟springboot底层实现类
1.
定义接口
@mapper public interface goodsdao { /** * 基于商品id删除商品 * @param id 商品id * @return 删除行数 * 数据层方法对象的sql映射 */ @delete("delete from tb_goods where id=#{id}") //当传入的参数只有一个且不是数组时 //#{id}这个地方的变量可以不是传入的参数名(自己随意) int deletebyid(integer id); }
测试
@springboottest public class testgoods { @autowired private goodsdao gd; @test void testgoods() { int i =gd.deletebyid(10); system.out.println(i); } }
2.
自己实现
接口方法
@mapper public interface goodsdao { /** * 基于商品id删除商品 * @param id 商品id * @return 删除行数 * 数据层方法对象的sql映射 */ @delete("delete from tb_goods where id=#{id}") int deletebyid(integer id); }
@component public class goodsdaoimpl { @autowired private sqlsession sqlsession; public int deletebyid(integer id) { return sqlsession.delete("com.cy.demo.goods.dao.goodsdao.deletebyid", id); //sqlsession.delete("com.cy.demo.goods.dao.deletebyid",id) } }
@springboottest public class goodsdaoimptest { @autowired private goodsdaoimpl gdi; @test void testdelete() { int i = gdi.deletebyid(9); system.out.println(i); } }
直接导mapper文件找对应的元素
3.
当sql语句比较复杂时使用映射文件
接口:
/** *goodsdao.java * ids可以接受多个参数 * 在mapper文件中直接使用array来接受, * @param ids * @return */ int deleteobject(/*@param("ids")*/integer...ids); //当mybatis过低时需要加上@param("ids")才能识别
不加@param("ids")报错
使用xml映射
获取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"> <mapper namespace="com.cy.demo.goods.dao.goodsdao"> <delete id="deleteobject"> delete from tb_goods <where> <if test="ids!=null and ids.length>0"> id in <foreach collection="ids" open="(" close=")" separator="," item="i"> #{i} </foreach> </if> or 1=2 </where> </delete> </mapper>
配置:
测试:
@autowired private goodsdao gd; @test void deleteobject() { int rows=gd.deleteobject(1,2,3); system.out.println(row); }
当我们在执行此方法时,其实现类内部会检测接口方法上是否有定义sql映射
假如没有,然后基于接口类全名找到对应的映射文件(mapper映射文件的id),然后在基于方法名
再找到对应映射文件的元素,进而获取sql映射
错误解决:
binding异常还有可能时参数异常,还有可能是配置文件有问题
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
推荐阅读
-
Spring和Mybatis整合全过程实现(idea实现)适合初学spring和mybatis
-
Spring boot Mybatis整合构建Rest服务(超细版)
-
荐 使用IDEA实现SSM整合(Maven+Spring+Mybatis+SpringMvc)
-
spring boot mybatis 整合教程
-
HBase 系列(十一)—— Spring/Spring Boot + Mybatis + Phoenix 整合
-
spring boot + mybatis如何实现数据库的读写分离
-
Spring Boot 整合 MyBatis 连接 Oracle数据库
-
Spring Boot整合mybatis(一)实例代码
-
spring Boot与Mybatis整合优化详解
-
Spring Boot和Thymeleaf整合结合JPA实现分页效果(实例代码)