[四]扩展在springboot工程中自定义mapper.xml文件操作数据库

1、pom.xml文件中添加依赖

<build>
        <resources>
            <resource>
                <directory>src/main/java</directory>
                <includes>
                    <include>**/*.xml</include>
                </includes>
                <filtering>true</filtering>
            </resource>
        </resources>
</build>

主要是因为使用maven在编译项目时,会默认不打包java文件夹下的xml文件,固在pom.xml中添加上面条件表示 maven在打包时不会过滤src/main/java文件夹下的xml文件。

2、添加Mapper对应的xml文件

在com.lingyi.mybatis.mapper.xml包中添加跟PesonMapper接口同名的PersonMapper.xml文件。

PersonMapper.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.lingyi.mybatis.mapper.PersonMapper">
    <!--配置getPersonById方法,注意该id名称需要跟下面Mapper文件中自定义的方法保持一致-->
    <select id="getPersonById" resultType="com.lingyi.mybatis.bean.Person">
        SELECT *
        FROM `person`
        WHERE `id` = #{id}
    </select>
</mapper>

3、声明Mapper的自定义方法

在PersonMapper.java的接口文件中声明自定义操作数据库的方法。

4、配置applicaton.yaml

在application.yaml文件中添加mapper-locations指定xml文件所在的包路径。

#mybatisplus配置
mybatis-plus:
  configuration:
    #配置mybatisplus日志
    log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
  mapper-locations: classpath:com/lingyi/mybatis/mapper/xml/*.xml #指定xml文件所在的包路径

5、测试

添加测试类TestCustomMapper.java,并且运行。

package com.lingyi.mybatis;

import com.lingyi.mybatis.bean.Person;
import com.lingyi.mybatis.mapper.PersonMapper;
import org.junit.jupiter.api.Test;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;

@SpringBootTest
public class TestCustomMapper {
    @Autowired
    private PersonMapper personMapper;
    @Test
    public void testCustomMapper(){
        Person p = personMapper.getPersonById(1); #测试自定义的Mapper方法
        System.out.println(p);


    }
}

6、项目重新编译后查看你的target文件 会发现它把xml文件打包进去了

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

恋上钢琴的虫

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值