刚建好的项目,页面会有红杠(不确定是否所有版本的eclipse创建的都有),在pom中引入下面的就可以了:
javax.servletservlet-api2.5
在pom文件中引入需要的SpringMVC,做测试用根据自己的需求引用适当的,不需要的可以删除:
配置spring-mvc.xml
<?xml version="1.0" encoding="UTF-8"?>
<mvc:annotation-driven /> mvc:default-servlet-handler/<context:component-scan base-package=“com.test.springMVC.*”/>
在web.xml加入对应信息:
Encodingorg.springframework.web.filter.CharacterEncodingFilterencodingUTF-8forceEncodingtrueEncoding/dispatcherorg.springframework.web.servlet.DispatcherServletcontextConfigLocationclasspath:spring-mvc.xml1dispatcher/.html
创建对应目录:
package com.test.springMVC.action;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
@Controller
public class TestController {@RequestMapping(value = “/hello”)public String hello() {return “hello”;}
}
通过Tomcat启动