Springboot中mapper.xml映射文件存放在resource目录下问题

Springboot中mapper.xml映射文件存放在resource目录下问题

1.环境介绍

springboot2.1.8 mybatis

2.目录结构

Springboot中mapper.xml映射文件存放在resource目录下问题_第1张图片

3.配置步骤

(1)在pom文件中做如下配置


 
        
        
            src/main/resources
        
    

(2)在application.yum文件做如下配置

mybatis:
    mapper-locations: classpath:mybatis/*.xml     # mapper映射文件

(3)mapper接口与mapper.xml映射文件按照mybatis规则配置即可

你可能感兴趣的:(springboot)