学习MVC的步骤
1.搭建环境
2.如何完成Controller和viewer的映射
3.如何把值传递给Controller
4.Controller如何把值传递给viewer
5.异常处理
6.页面标签
7.文件上传
8.深入源代码
1.搭建SpringMVC环境
创建一个动态的JAVA项目, 导入SpringMVC的jar包和apache的commons-logging 包
2.配置 web.xml文件
创建一个hello servlet,所有请求都通过这个hello servlet来处理
<?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"> <servlet> <servlet-name>hello</servlet-name> <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class> <load-on-startup>1</load-on-startup> </servlet> <servlet-mapping> <servlet-name>hello</servlet-name> <url-pattern>/</url-pattern> </servlet-mapping></web-app>
3.创建hello-servlet.xml的配置文件
时间: 2024-10-06 18:39:25