解决maven项目Invalid bound statement (not found)的方法
Posted dummyly
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了解决maven项目Invalid bound statement (not found)的方法相关的知识,希望对你有一定的参考价值。
用IDEA 做的ssm 的maven项目,登陆时出现上图问题。
原因是它读取不到DevUserMapper.xml文件和取它xml文件,后面查询在编译好的文件中,xml文件并没有引入进来,这就是导致出现这个问题的原因。
解决方法:
在pom.xml文件中的<build>标签中添加以下代码:
<resources>
<resource>
<directory>src/main/java</directory>
</resource>
<resource>
<directory>src/main/resources</directory>
</resource>
</resources>
重新运行项目就可以了。
以上是关于解决maven项目Invalid bound statement (not found)的方法的主要内容,如果未能解决你的问题,请参考以下文章
Invalid bound statement (not found)之idea打包maven项目问题
Maven项目使用mybatis报错 org.apache.ibatis.binding.BindingException: Invalid bound statement (not found):(
Maven异常_05_Invalid bound statement (not found)
springboot+mybatis报错Invalid bound statement (not found)
MyBatis 诡异的Invalid bound statement not found 错误
通过maven test 报org.apache.ibatis.binding.BindingException: Invalid bound statement