2011-11-23 57 views
0

我的設立如下:Spring MVC的:在類路徑的資源CannotLoadBeanClassException爲豆

  • 的Tomcat 7
  • Spring MVC的3.0.6
  • Eclipse的靛藍

文件structur樣子此

src 
    - main 
     - java 
     - resources 
     - mdp-servlet.xml 
     - mdp-service.xml 
     - webapp 
     - WEB-INF 
      - web.xml 
    - test 

mdp-se rvlet.xml

<?xml version="1.0" encoding="UTF-8"?> 
<beans xmlns="http://www.springframework.org/schema/beans" 
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context" 
    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"> 

    <context:component-scan base-package="ch.hszt.mdp.web" /> 

    <bean class="org.springframework.web.servlet.mvc.annotation.DefaultAnnotationHandlerMapping" /> 

    <bean class="org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter" /> 


    <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver"> 
     <property name="prefix" value="/WEB-INF/jsp/" /> 
     <property name="suffix" value=".jsp" /> 
    </bean> 
</beans> 

MDP-service.xml中

<beans xmlns="http://www.springframework.org/schema/beans" 
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
    xsi:schemaLocation="http://www.springframework.org/schema/beans 
http://www.springframework.org/schema/beans/spring-beans-3.0.xsd"> 

    <bean id="userService" class="ch.hszt.mdp.service.UserServiceImpl" /> 

</beans> 

的web.xml

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

    <!-- Needed to see file mdp-service.xml --> 
    <context-param> 
     <param-name>contextConfigLocation</param-name> 
     <param-value>classpath:mdp-service.xml</param-value> 
    </context-param> 

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

    <display-name>testing</display-name> 

    <servlet> 
     <servlet-name>mdp</servlet-name> 
     <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class> 
     <load-on-startup>1</load-on-startup> 
    </servlet> 
    <servlet-mapping> 
     <servlet-name>mdp</servlet-name> 
     <url-pattern>/</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>default.html</welcome-file> 
     <welcome-file>default.htm</welcome-file> 
     <welcome-file>default.jsp</welcome-file> 
    </welcome-file-list> 
</web-app> 

Sourcefolder:

  • 的src /主/ JAVA
  • SRC /主/資源小號
  • 的src/test/java下

這是錯誤消息我收到的時候我嘗試Eclipse中使用Tomcat啓動項目

org.springframework.beans.factory.BeanDefinitionStoreException: IOException parsing XML document from ServletContext resource [/WEB-INF/mdp-servlet.xml]; nested exception is java.io.FileNotFoundException: Could not open ServletContext resource [/WEB-INF/mdp-servlet.xml] 

有沒有人一個想法,以解決這一問題?

Thx很多!

+0

這是否存在類? –

+0

是的,它確實...如果我從資源中提取文件並將它們放入網絡inf,一切正常 – gabac

+0

從'resources'?如果配置文件不存在,甚至不應該嘗試加載bean,但是可以。 –

回答

0

找到了解決辦法

<servlet> 
     <servlet-name>mdp</servlet-name> 
     <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class> 
     <init-param> 
      <param-name>contextConfigLocation</param-name> 
      <param-value>classpath:mdp-servlet.xml</param-value> 
     </init-param> 
     <load-on-startup>1</load-on-startup> 
    </servlet> 
    <servlet-mapping> 
     <servlet-name>mdp</servlet-name> 
     <url-pattern>/</url-pattern> 
    </servlet-mapping> 
相關問題