maven创建的quickstart 识别不到applicationContext.xml

Posted Alan Lau

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了maven创建的quickstart 识别不到applicationContext.xml相关的知识,希望对你有一定的参考价值。

1、错误

maven项目java.io.FileNotFoundException: class path resource [applicationContext.xml] cannot be resolve

 2、描述:

用 maven 创建的 quickstart 项目,配置 好了 Spring xml配置文件,启动报错 maven项目java.io.FileNotFoundException: class path resource [applicationContext.xml] cannot be resolve

ApplicationContext appCon = new ClassPathXmlApplicationContext("applicationContext.xml");

 3、分析:

maven-quickstart 项目的 classpath 默认是 src/main/java,当我们把 applicationContext.xml 放置到 src/main/java 文件下,运行确报错“资源找不到”,说明 maven 打包运行的时候,没有将 *.xml 文件包含进去,手动配置添加即可,配置如下:

<build>
    ...

    <!--加如下配置防止maven打包时xml文件或properties文件打包不进去-->
    <resources>
      <resource>
        <directory>src/main/java</directory>
        <includes>
          <include>**/*.properties</include>
          <include>**/*.xml</include>
        </includes>
        <filtering>false</filtering>
      </resource>
    </resources>

    ...
</build>

以上是关于maven创建的quickstart 识别不到applicationContext.xml的主要内容,如果未能解决你的问题,请参考以下文章

创建 maven maven-archetype-quickstart 项目抱错问题解决方法

关于用maven创建的springboot工程打包jar后找不到配置文件的问题

解决创建maven项目Could not resolve archetype org.apache.maven.archetypes:maven-archetype-quickstart问题(示例代码

org.apache.maven.archetypes:maven-archetype-quickstart 这个是干啥的

eclipse创建maven项目时报错解决办法

idea2017版本,生成maven quickstart项目,没有resources文件夹。想知道怎么设置让它自动生成