解决Error parsing SQL Mapper Configuration. Cause: java.io.IOException: Could not find resource com/cq

Posted 何甜甜在吗

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了解决Error parsing SQL Mapper Configuration. Cause: java.io.IOException: Could not find resource com/cq相关的知识,希望对你有一定的参考价值。

搭建了一个ssm项目,启动报错Error parsing SQL Mapper Configuration. Cause: java.io.IOException: Could not find resource com/cqupt/paging/dao/User.xml

我看了一下路径没错,名字也没有写错

网上找了一下资料解决了,记录一下

我用maven管理,在target下并没有将User.xml,出错原因就是maven编译时没有将xml文件放进去,所以才会找不到User.xml文件

解决方法,在pom.xml加入:

 1 <!--classpath-->
 2   <build>
 3     <resources>
 4       <resource>
 5         <directory>src/main/java</directory>
 6       </resource>
ta 8         <directory>src/main/resources</directory>
 9         <includes>
10           <include>**/*xml</include>
11           <include>**/*.properties</include>
12         </includes>
13       </resource>
14     </resources>
15   </build>

或者手动将User.xml放入targegt对应的路径下

以上是关于解决Error parsing SQL Mapper Configuration. Cause: java.io.IOException: Could not find resource com/cq的主要内容,如果未能解决你的问题,请参考以下文章

错误:ER_PARSE_ERROR:您的 SQL 语法有错误;

Error parsing SQL Mapper Configuration. Cause: java.io.IOException: Could not find resource com/mapp

用C语言出现 parse error before '&' token 这种错误怎么解决?

帝国备份王出现 Parse error: syntax error, unexpected end of file解决办法

PHP提示:Parse error: syntax error, unexpected T_ECHO 解决方案

JSON parse error: Invalid UTF-8 解决办法系列