上下文加载但无法启动

通过Maven插件将Spring应用程序部署到Tomcat容器。

我有 - 对我的眼睛 - 一切配置正确。 我的应用程序将进行部署,但正如标题所述,上下文无法启动。

检查Catalina.out日志我可以看到以下消息

SEVERE [http-nio-8080-exec-6] org.springframework.web.context.ContextLoader.initWebApplicationContext上下文初始化失败org.springframework.beans.factory.BeanDefinitionStoreException:IOException从ServletContext资源解析XML文档[/ WEB-INF / applicationContext .XML]; 嵌套异常是java.io.FileNotFoundException:无法打开ServletContext资源[/WEB-INF/applicationContext.xml]

输出状态文件不能在路径:/WEB-INF/applicationContext.xml中找到,但是,我的文件是application-context.xml,位于路径WEB-INF / spring / application-context.xml中。

这也在web.xml中显式声明如下:

<?xml version="1.0" encoding="ISO-8859-1" ?>
<web-app xmlns="http://java.sun.com/xml/ns/j2ee"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd"
         version="2.4">


    <display-name>Younify!</display-name>


    <!-- The definition of the Root Spring Container shared by all app Servlets -->
    <context-param>
       <param-name>contextConfiguration</param-name>
       <param-value>/WEB-INF/spring/application-context.xml</param-value>
    </context-param>

    <!-- Creates the Spring Container shared by all Servlets and Filters -->
    <listener>
       <listener-class>
           org.springframework.web.context.ContextLoaderListener
       </listener-class>
    </listener>


    <!-- Processes application requests -->
    <servlet>
       <servlet-name>younifyapp</servlet-name>
       <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
        <init-param>
            <param-name>contextConfigLocation</param-name>
            <param-value>/WEB-INF/spring/application-context.xml</param-value>
        </init-param>
        <load-on-startup>1</load-on-startup>
    </servlet>

    <servlet-mapping>
       <servlet-name>younifyapp</servlet-name>
       <url-pattern>/youunify</url-pattern>
    </servlet-mapping>

    <welcome-file-list>
       <welcome-file>index.html</welcome-file>
       <welcome-file>index.htm</welcome-file>
       <welcome-file>index.jsp</welcome-file>
    </welcome-file-list>

<!-- -->


</web-app>

但是,该文件在部署时未被引用。 任何关于我在做什么的想法都是错误的? 非常感谢。

链接地址: http://www.djcxy.com/p/65353.html

上一篇: context loads but fails to start

下一篇: Spring bean initialization fails but server start up