Web应用程序抛出了load()异常java.lang.ClassNotFoundException:org.springframework.web.servlet.DispatcherServlet

时间:2018-05-29 08:00:16

标签: java xml spring spring-mvc

下面是我的调度程序servlet。我不是在使用maven。不确定我为什么会遇到这个错误。我在构建路径中包含所有必需的jar。当我面向运行我的项目时:Web应用程序抛出了load()异常java.lang.ClassNotFoundException:org.springframework.web.servlet.DispatcherServlet

<?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:p="http://www.springframework.org/schema/p"  
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="com.controllers"></context:component- 
scan>

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

  <bean id="ds" 
    class="org.springframework.jdbc.datasource.DriverManagerDataSource">
    <property name="driverClassName" value="com.mysql.jdbc.Driver"> 
        </property>
     <property name="url" value="jdbc:mysql://localhost:3306/springmvc"> 
  </property>
   <property name="username" value="root"></property>
   <property name="password" value="password"></property>
 </bean>

 <bean id="jt" class="org.springframework.jdbc.core.JdbcTemplate">
   <property name="dataSource" ref="ds"></property>
  </bean>

 <bean id="dao" class="com.dao.EmpDao">
  <property name="template" ref="jt"></property>
 </bean>
 </beans>

这是我的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">

<servlet>
<servlet-name>spring</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet- 
  class>
<load-on-startup>1</load-on-startup>  
</servlet>
<servlet-mapping>
<servlet-name>spring</servlet-name>
<url-pattern>/</url-pattern>
</servlet-mapping>

1 个答案:

答案 0 :(得分:0)

它是许多开发人员面临的常见问题。下面是消除此错误的简单逐步解决方案(假设基于Eclipse的IDE)

  1. 右键单击项目,然后选择“构建路径”>“配置构建路径”。

    enter image description here

  2. 从左侧导航窗格中选择“部署程序集”选项,然后单击“添加”按钮。

    enter image description here

  3. 选择Java构建路径条目,然后单击下一步。

    enter image description here

  4. Maven依赖项选项将在其为Maven项目时显示。如果它不是非Maven项目,则将列出所有jar。选择maven依赖项/所有jar,然后单击完成。

    enter image description here

  5. 将在部署程序集列表中创建一个新条目,如图所示。单击“应用并关闭”按钮。

    enter image description here

  6. 重新启动应用程序服务器,然后再次运行项目。该错误肯定会消失。