mybatis读取配置文件报错:Could not find resource configuration.xml
Posted 寻坑者
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mybatis读取配置文件报错:Could not find resource configuration.xml相关的知识,希望对你有一定的参考价值。
今天用idea编译mybatis的java项目时,一直报错,找不到config.xml
查看class文件夹,确实没有xml文件
也就是说,xml文件没在编译范围内
在pom.xml中,把xml文件加入编译,成功解决问题。
<build> <resources> <resource> <directory>src/main/java</directory> <includes> <include>**/*.xml</include> </includes> <filtering>true</filtering> </resource> </resources> </build>
以上是关于mybatis读取配置文件报错:Could not find resource configuration.xml的主要内容,如果未能解决你的问题,请参考以下文章
解决Mybatis报错Could not find resource mybatis-config.xml
mybatis报错could not be found for the javaType
mybatis报错could not be found for the javaType
mybatis报错could not be found for the javaType
springboot 报错Field XXX required a bean of type XXX that could not be found.