我正在使用Spring和Maven项目。我在mit-parent下有项目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>


谢谢

最佳答案

经过尝试不同的建议解决方案。
我在Eclipse中的Deployment Assembly中找到“条目找不到:mit-jpa”。因此,我安装了Eclipse WTP Eclipse插件。然后重新部署tomcat,一切正常。

关于eclipse - Eclipse中的Tomcat在导入不同项目的resources = applicationContext.xml时抛出FileNotFoundException,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/11173225/

10-10 09:45