一、SpringMVC数据请求流程
request –> DispatcherServlet –>Handler Mapping –>Control Servlet –>ModelAndView –>ViewResolver –> View –> response
其中 ModelAndView 会调用 数据层(db,cache….)此处略
二、创建一个第一个springMVC工程
(环境搭建此处略)
工程说明;
该工程主要是一个简单的交互,用户输入一个字符串,提交后将在另一个页面展示
1、用eclipse创建一个动态的Web工程, 在生成的时候注意勾选上自动生成web.xml文件,系统默认不自动生成
2、将Spring所需要的jar包copy到lib目录下。 (spring包可在相关网址下载)
3、在web.xml配置 DispatchServlet与HandlerMapping的名字。
配置如下:
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd" id="WebApp_ID" version="3.0">
<display-name>test1display-name>
<welcome-file-list>
<welcome-file>index.htmlwelcome-file>
<welcome-file>index.htmwelcome-file>
<welcome-file>index.jspwelcome-file>
<welcome-file>default.htmlwelcome-file>
<welcome-file>default.htmwelcome-file>
<welcome-file>default.jspwelcome-file>
welcome-file-list>
<servlet>
<servlet-name>test1servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServletservlet-class>
servlet>
<servlet-mapping>
<servlet-name>test1servlet-name>
<url-pattern>*.dourl-pattern>
servlet-mapping>
web-app>
由于我的ServletName配置的是test1,那么必须新增一个test-servlet.xml文件。
该文件在最后列出,因为还有其它的配置需要说明。
4、创建hello.jsp页面,如下
响应事件为 hello.do, hello.do如何与控制器关键是在test1-servlet.xml中定义实现的
<%@ page language="java" contentType="text/html; charset=utf-8"
pageEncoding="utf-8"%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Insert title heretitle>
head>
<body>
<form action="hello.do" method="post">
hello:<input name="hello" type="text" />
<input type="submit" value="提交" />
form>
body>
html>
创建Controller, 如下所示
使用了最原始的方式(非注解),该控制器主要获取 “hello” 参数,然后再返回给index页面,实际是index.jsp 因为在test1-servlet配置页面解析器时,与置了后缀
package com.test1.Controller;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import org.springframework.web.servlet.ModelAndView;
import org.springframework.web.servlet.mvc.AbstractController;
public class HelloController extends AbstractController {
@Override
protected ModelAndView handleRequestInternal(HttpServletRequest arg0,
HttpServletResponse arg1) throws Exception {
String hello = arg0.getParameter("hello");
System.out.println("arg0 = " + hello);
ModelAndView mav = new ModelAndView("index");
mav.addObject("helloworld", "hello:" + hello);
return mav;
}
}
创建view/index.jsp 响应页面,如下,仅做结果展示:
<%@ page language="java" contentType="text/html; charset=utf-8"
pageEncoding="utf-8"%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Insert title heretitle>
head>
<body>
<h1>${helloworld }h1>
body>
html>
注意:index.jsp必须在view,原因是因为在test1-servlet中配置了前置器为 /view/ 这意味首后续路径均以 /view/ 为根目录
test1-servlet.xml 如下:
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:mvc="http://www.springframework.org/schema/mvc"
xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd">
<bean class="org.springframework.web.servlet.mvc.support.ControllerBeanNameHandlerMapping"> bean>
<bean name="/hello.do" class="com.test1.Controller.HelloController">bean>
<bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<property name="prefix" value="/view/">property>
<property name="suffix" value=".jsp">property>
bean>
beans>
此至,一个简单的helloworld工程完成。