mybatisplus 通过xml 定义接口

在 MyBatis-Plus 中,虽然它极大地简化了 CRUD 操作,提供了许多注解方式(如 @Select@Insert@Update@Delete)来直接在 Mapper 接口上定义 SQL 语句,但 MyBatis-Plus 仍然支持传统的 MyBatis 风格的 XML 配置方式来定义 SQL 语句。这种方式提供了更大的灵活性和复杂 SQL 的处理能力。

1. 创建 Mapper 接口

首先,你需要创建一个 Mapper 接口,这个接口会包含你需要执行的数据库操作方法。比如,你有一个 UserMapper 接口来操作用户表。

复制代码
package com.example.mapper;  
  
import com.baomidou.mybatisplus.core.mapper.BaseMapper;  
import com.example.entity.User;  
import org.apache.ibatis.annotations.Mapper;  
  

@Mapper  
public interface UserMapper {  
    // 这里可以定义你自己的方法,然后通过 XML 映射 SQL  
    User selectUserById(Long id);  
}

2. 创建 XML 映射文件

然后,你需要为上述的 Mapper 接口创建一个 XML 映射文件。这个文件通常与 Mapper 接口在同一个包路径下,但位于 resources 目录下的 mapper 文件夹中(这个文件夹的路径可以根据你的项目配置来调整)。

例如,如果你的 Mapper 接口在 com.example.mapper 包下,那么 XML 文件可能位于 src/main/resources/mapper/UserMapper.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.example.mapper.UserMapper">  
  
    <!-- 根据ID查询用户 -->  
    <select id="selectUserById" resultType="com.example.entity.User">  
        SELECT * FROM user WHERE id = #{id}  
    </select>  
  
</mapper>

3. 配置 MyBatis-Plus

确保你的 MyBatis-Plus 配置已经正确设置了 mapper 文件的路径。如果你使用的是 Spring Boot 集成 MyBatis-Plus,那么通常这个配置会在 application.propertiesapplication.yml 文件中自动配置好,因为 Spring Boot 会根据约定大于配置的原则来寻找 mapper 接口和 XML 文件。

但是,如果你需要手动配置,确保 MyBatis 的配置文件(如 mybatis-config.xml)中包含了 mapper 文件的路径,或者你的 Spring Boot 应用通过 @MapperScan 注解指定了 mapper 接口的扫描路径。

复制代码
mybatis-plus:
  mapper-locations: classpath:mapper/*.xml

4. 使用 Mapper

一旦 Mapper 接口和 XML 文件配置完成,你就可以在你的服务层或控制器中注入 UserMapper 并调用其方法来执行数据库操作了。

复制代码
@Service  
public class UserService {  
  
    @Autowired  
    private UserMapper userMapper;  
  
    public User getUserById(Long id) {  
        return userMapper.selectUserById(id);  
    }  
}

这就是在 MyBatis-Plus 中通过 XML 文件定义 Mapper 接口的 SQL 语句的基本步骤。这种方式让你能够编写复杂的 SQL 语句,同时享受 MyBatis-Plus 提供的强大功能。

如果报错 Invalid bound statement (not found) 请参考

https://www.cnblogs.com/zhoushiya/p/12797240.html

相关推荐
A***F1571 小时前
SpringBoot(整合MyBatis + MyBatis-Plus + MyBatisX插件使用)
spring boot·tomcat·mybatis
I***t7161 小时前
【MyBatis】spring整合mybatis教程(详细易懂)
java·spring·mybatis
代码or搬砖13 小时前
MyBatisPlus中的常用注解
数据库·oracle·mybatis
高级程序源15 小时前
springboot社区医疗中心预约挂号平台app-计算机毕业设计源码16750
java·vue.js·spring boot·mysql·spring·maven·mybatis
q***160817 小时前
SpringCloud 系列教程:微服务的未来(二)Mybatis-Plus的条件构造器、自定义SQL、Service接口基本用法
spring cloud·微服务·mybatis
忘记92620 小时前
mybatis是什么
数据库·oracle·mybatis
q***925120 小时前
Springboot3 Mybatis-plus 3.5.9
数据库·oracle·mybatis
k***45991 天前
【mybatis】基本操作:详解Spring通过注解和XML的方式来操作mybatis
xml·spring·mybatis
z***56561 天前
springboot整合mybatis-plus(保姆教学) 及搭建项目
spring boot·后端·mybatis
空空kkk2 天前
MyBatis——代理Dao方式的增删改查操作
java·数据库·mybatis