maven创建web工程Spring配置文件找不到问题解决方案

Posted tianSky

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了maven创建web工程Spring配置文件找不到问题解决方案相关的知识,希望对你有一定的参考价值。

使用maven创建web工程,将Spring配置文件applicationContext.xml放在src/resource下,用eclipse编译时提示class path resource [applicationContext.xml] cannot be opened because it does not exist错误。但是用mvn clean package命令编译时成功的。web.xml配置的如下

<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>classpath:applicationContext.xml</param-value>
</context-param>

用google搜索一下(之前google用不了,用百度搜到蛋疼),发现是由于classpath不是指向resource路径,导致一直找不到文件。需要在classpath后面加个*,这样就解决问题了。

<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>classpath*:applicationContext.xml</param-value>
</context-param>

以上是关于maven创建web工程Spring配置文件找不到问题解决方案的主要内容,如果未能解决你的问题,请参考以下文章

IDEA导入maven工程以及web.xml中spring配置文件文件加载不到的问题

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

maven 工程启动找不到 Spring ContextLoaderListener 的解决办法

maven 工程启动找不到 Spring ContextLoaderListener 的解决办法

Maven快速创建SpringMVC web工程详解

JAVA maven创建web项目,把Spring框架配置文件放在src/main/resources中读取不到配置文件