我正在使用Spring 4建立一个简单的项目。我没有使用Maven。相反,我只是通过将Jars添加到类路径中来添加Spring依赖项。 我正在为这个项目使用RAD 8.5和Websphere 8.5。
当我尝试启动项目时,它给出了错误: class java.lang.ClassNotFoundException:org.springframework.web.servlet.DispatcherServlet
我在web.xml中提供了以下内容:
<servlet>
<display-name>Controller</display-name>
<servlet-name>Controller</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>Controller</servlet-name>
<url-pattern>*</url-pattern>
</servlet-mapping>
我的Controller-servlet.xml如下所示:
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:p="http://www.springframework.org/schema/p"
xmlns:mvc="http://www.springframework.org/schema/mvc"
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-4.0.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-4.0.xsd
http://www.springframework.org/schema/mvc
http://www.springframework.org/schema/mvc/spring-mvc-4.0.xsd">
<context:component-scan base-package="com.spring4.controller" />
<bean id="viewResolver"
class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<property name="prefix">
<value>/WEB-INF/view/</value>
</property>
<property name="suffix">
<value>.jsp</value>
</property>
</bean>
</beans>
我的Controller类看起来像:
@Controller
public class HelloSpring4Controller {
@RequestMapping("/hello")
public ModelAndView sayHello() {
String message = "Welcome to Spring 4.0 !!! ";
return new ModelAndView("welcome", "message", message);
}
}
我在WEB-INF / view下有一个welcome.jsp,我在其中获取消息Object中的值。
有人能让我知道我哪里出错吗?
谢谢, Sayantani