springboot整合mybatis mapper.xml配置
时间: 2023-10-08 18:14:20 浏览: 210
springboot整合mybatis基于mapperXML模式.zip
在SpringBoot中整合MyBatis,配置mapper.xml有两种方式。第一种是将mapper.xml文件和mapper接口放在一起,然后在application.yml中配置mapper-locations的相对路径。例如:mapper-locations: classpath:com/example/mapper/*.xml。
另一种方式是将mapper.xml文件放在resources目录下,然后在application.yml中配置mapper-locations的相对路径。例如:mapper-locations: classpath:mapper/*.xml。
在pom.xml文件中,需要添加相关的resources路径,以确保mapper.xml文件能够被正确加载。
阅读全文