当导入不同项目的resources = applicationContext.xml时,eclipse中的Tomcat会抛出FileNotFoundException

时间:2012-06-23 21:45:40

标签: eclipse spring tomcat maven applicationcontext

我正在使用Spring和Maven项目。我在mit-parent下有Project mit-webservices和mit-util项目。

mit-webservices正在使用mit-utils。我正在从mit-webservices的webapplicationContext.xml导入mit-utils的applicationContext.xml,如下所示。

<import resource="classpath:mit/utils/shared/applicationContext.xml" />

但是当我在Eclipse中的Tomcat下运行mit-webservices时,我得到了异常

Jun 23, 2012 2:35:50 PM org.apache.catalina.core.AprLifecycleListener init
INFO: The APR based Apache Tomcat Native library which allows optimal performance in production environments was not found on the java.library.path: .:/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java
Jun 23, 2012 2:35:50 PM org.apache.tomcat.util.digester.SetPropertiesRule begin
WARNING: [SetPropertiesRule]{Server/Service/Engine/Host/Context} Setting property 'source' to 'org.eclipse.jst.j2ee.server:vsm-webservices' did not find a matching property.
Jun 23, 2012 2:35:50 PM org.apache.coyote.AbstractProtocol init
INFO: Initializing ProtocolHandler ["http-bio-8080"]
Jun 23, 2012 2:35:50 PM org.apache.coyote.AbstractProtocol init
INFO: Initializing ProtocolHandler ["ajp-bio-8009"]
Jun 23, 2012 2:35:50 PM org.apache.catalina.startup.Catalina load
INFO: Initialization processed in 639 ms
Jun 23, 2012 2:35:50 PM org.apache.catalina.core.StandardService startInternal
INFO: Starting service Catalina
Jun 23, 2012 2:35:50 PM org.apache.catalina.core.StandardEngine startInternal
INFO: Starting Servlet Engine: Apache Tomcat/7.0.25
Jun 23, 2012 2:35:51 PM org.apache.catalina.core.ApplicationContext log
INFO: Initializing Spring root WebApplicationContext
Jun 23, 2012 2:35:51 PM org.springframework.web.context.ContextLoader initWebApplicationContext
INFO: Root WebApplicationContext: initialization started
Jun 23, 2012 2:35:51 PM org.springframework.context.support.AbstractApplicationContext prepareRefresh
INFO: Refreshing Root WebApplicationContext: startup date [Sat Jun 23 14:35:51 PDT 2012]; root of context hierarchy
Jun 23, 2012 2:35:51 PM org.springframework.beans.factory.xml.XmlBeanDefinitionReader loadBeanDefinitions
INFO: Loading XML bean definitions from class path resource [mit/webservices/webApplicationContext.xml]
Jun 23, 2012 2:35:51 PM org.springframework.beans.factory.xml.XmlBeanDefinitionReader loadBeanDefinitions
INFO: Loading XML bean definitions from class path resource [mit/utils/shared/applicationContext.xml]
Jun 23, 2012 2:35:51 PM org.springframework.web.context.ContextLoader initWebApplicationContext
    SEVERE: Context initialization failed
    org.springframework.beans.factory.parsing.BeanDefinitionParsingException: Configuration problem: Failed to import bean definitions from URL location [classpath:mit/utils/shared/applicationContext.xml]
    Offending resource: class path resource [mit/webservices/webApplicationContext.xml]; nested exception is org.springframework.beans.factory.BeanDefinitionStoreException: IOException parsing XML document from class path resource [mit/utils/shared/applicationContext.xml]; nested exception is java.io.FileNotFoundException: class path resource [mit/utils/shared/applicationContext.xml] cannot be opened because it does not exist

在我的mit-webservices中有一些junit测试我在哪里加载mit-webservices / webapplicationContext文件,它工作得非常好。但是当我尝试在tomcat下部署mit-webservices时,它会抛出异常。

我还检查了mit-utils.jar确实存在的mit-webservices的/ lib dire。

我在部署之前每次都进行了mvn clean install和mvn eclipse:eclipse。 我认为tomcat在部署时无法在类路径中找到mit-util,但我不知道它为什么会发生。

我的WebApplicationContext.xml是

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns:aop="http://www.springframework.org/schema/aop" xmlns:tx="http://www.springframework.org/schema/tx"
    xmlns:context="http://www.springframework.org/schema/context"
    xmlns:util="http://www.springframework.org/schema/util" xmlns="http://www.springframework.org/schema/beans"
    xsi:schemaLocation="http://www.springframework.org/schema/beans 
           http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
           http://www.springframework.org/schema/context
           http://www.springframework.org/schema/context/spring-context-3.0.xsd">


    <import resource="classpath:mit/utils/shared/applicationContext.xml" />

    <context:component-scan base-package="mit" />

</beans>

我在mit-webservices中的web.xml是

<?xml version="1.0" encoding="UTF-8"?>
<web-app version="2.5" xmlns="http://java.sun.com/xml/ns/javaee"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">

    <!-- Spring context -->

    <context-param>
        <param-name>contextConfigLocation</param-name>
        <param-value>classpath:mit/webservices/webApplicationContext.xml </param-value>
    </context-param>

    <listener>
        <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
    </listener>

    <servlet>
        <servlet-name>ServletAdaptor</servlet-name>
        <servlet-class>com.sun.jersey.spi.spring.container.servlet.SpringServlet</servlet-class>
        <init-param>
            <param-name>com.sun.jersey.config.property.packages</param-name>
            <param-value>mit.webservices.jaxrs</param-value>
        </init-param>
        <load-on-startup>1</load-on-startup>
    </servlet>
    <servlet-mapping>
        <servlet-name>ServletAdaptor</servlet-name>
        <url-pattern>/resources/*</url-pattern>
    </servlet-mapping>

</web-app>

谢谢

1 个答案:

答案 0 :(得分:0)

尝试不同的建议解决方案后。 我在我的eclipse中发现部署程序'Entry无法找到:mit-jpa'。所以我安装了Eclipse WTP Eclipse插件。然后重新部署tomcat,一切正常。