标签:spring 连接数据库 mybatis 配置文件 ace classes director 出现 nts
1. 首次搭建:https://blog.csdn.net/u013187139/article/details/68944972
整合mybatis: https://www.jianshu.com/p/a811a89d1b28
2.遇到的坑:连接数据库时,报错:Invalid bound statement (not found): com.demo.mapper.UserMapper.findUser
(1)检查注解@Mapper是否添加上,引用的地方是否有扫描注解@ComponentScan(value = {"com.demo.mapper"}), 结果都有
(2)检查dao文件和xml文件中的方法名是否相同, 相同
(3)检查配置文件application.properties中 映射xml文件路径的配置 mybatis.mapper-locations=classpath:com/demo/mapper/xml/*.xml 是否正确, 正确
(4)检查xml文件中 <mapper namespace="com.demo.mapper.UserMapper"> 命名空间是否正确, 正确
(5)检查编译文件target中classes目录下是否成功编译了xml文件, 结果 发现了问题 目录下 并没有 对应的xml文件
原因:idea编辑器,不会自动编译src/main/java中的xml文件,只会自动编译resource下的,
但为了保持结构清晰,我们习惯把xml文件放在和dao同级或低一级的xml包中,此时,就出现了上述问题;
解决方法:添加poom依赖,强制编译:build中添加如下代码:
<resources>
<resource>
<directory>src/main/java</directory>
<includes>
<include>**/*.xml</include>
</includes>
<filtering>false</filtering>
</resource>
</resources>
标签:spring 连接数据库 mybatis 配置文件 ace classes director 出现 nts
原文地址:https://www.cnblogs.com/mufengforward/p/9184431.html