在pom.xml里面的build標簽加上resources說明
<resources> <!-- mapper.xml文件在java目錄下 --> <resource> <directory>src/main/java</directory> <includes> <include>**/*.xml</include> </includes> </resource> <!-- mapper.xml文件在resources目錄下--> <resource> <directory>src/main/resources</directory> </resource> </resources>
然后在application.yml中聲明mapper.xml具體位置
mybatis:
mapper-locations: classpath:com/xiaostudy/test/mapper/xml/*.xml