Caused by: java.io.FileNotFoundException: Could not open ServletContext resource [/config/spring/app...

在搭建SpringMVC框架的时候遇到了这个问题

问题的原因: 就是没有找到applicatoincontext.xml这个文件, 因为idea自动生成的路径不正确

因此需要再web.xml里面, (对contextConfigLocation这个变量的)

将application.context.xml这个文件的路径进行修改,

/config/spring/applicationContext.xml

修改为

classpath:config/spring/applicationContext.xml

web.xml中原来的代码: 

    <context-param>
        <param-name>contextConfigLocationparam-name>
        <param-value>/config/spring/applicationContext.xmlparam-value>
    context-param>

 

web.xml中修改后的代码:  

    <context-param>
        <param-name>contextConfigLocationparam-name>
        <param-value>classpath:config/spring/applicationContext.xmlparam-value>
    context-param>

修改之后, 问题解决!

转载于:https://www.cnblogs.com/zjulanjian/p/10997771.html

你可能感兴趣的:(Caused by: java.io.FileNotFoundException: Could not open ServletContext resource [/config/spring/app...)