一、springMVC作为spring的一部分,继承了spring轻量级,高度可配置性,良好的拓展性和兼容性等特征,使其成为企业的新选择。SpringMVC 的功能:
1:Controller 为中心完成对系统流程的控制管理
2:从请求中搜集数据
3:对传入的参数进行验证
4:将结果返回给视图
5:针对不同的视图提供不同的解决方案
6:针对 jsp 视图提供标签库
7:拦截器
8:上传文件
二、SpringMVC 的核心组件
1:DispatcherServlet:*控制器,把请求给转发的具体的控制类
2:Controller:具体处理请求的控制器
3:handlerMapping:映射处理器,负责映射*处理器转发给 controller 时的映射策略
4:ModelAndView:服务层返回的数据和视图层的封装类
5:ViewResolver & View:视图解析器,解析具体的视图
6:Interceptors:拦截器,负责拦截我们定义的请求,然后做处理工作
三、SpringMVC 的工作流程
1、客户端请求提交到DispatcherServlet
2、DispatcherServlet查询一个或多个HandlerMapping,找到处理请求的Controller
3、DispatcherServlet将请求提交到Controller
4、Controller调用业务逻辑处理后,返回ModelAndView
5、DispatcherServlet查询一个或多个ViewResolver视图解析器,找到ModelAndView指定的视图
6、视图负责将结果显示到客户端
较详细:
1、当用户在浏览器中点击一个链接或者提交一个表单时,那么就会产生一个请求(request)。
当请求离开浏览器时,它会携带用户请求的信息(比如说请求的URL信息,用户名,密码什么的)。
2、请求的第一站到达的是Spring的DispatcherServlet,
它是一个前端控制器,工作是将用户的请求委托给其他的组件(这里是交给Spring MVC的控制器)去处理。
这里DispatcherServlet要决定将请求传给哪一个控制器(Controller)去处理,那么这时就需要处理器映射(Handler Mapping)了。
处理器映射会看请求的URL信息,然后决定将请求交给哪一个控制器去处理。比如说有两个控制器ControllerA和ControllerB,
分别处理后缀名为.html和.jsp送来的请求,那么当请求者的后缀名为.html时,那么DispatcherServlet就将请求交给ControllerA进行处理。
3、当选择了一个合适的控制器后,DispatcherServlet就会将请求交给这个控制器去处理。在这个控制器上,
用户的请求将会将用户提交的一些信息交由控制器处理并等待。
然而设计的比较好的控制器本身对信息做很少的处理或者根本不做处理,
而是将业务逻辑交给一个或多个服务器对象(Model)去处理。
4、当控制器对用户请求所携带的信息进行处理(或交给模型层处理)后,
经常会产生一些其他的需要返回给浏览器进行显示的数据。
这些原始数据直接显示出来显然是不友好的,那么就需要视图(View)来对这些数据进行显示了。
控制器的最后一件事就是将模型数据打包,
并且指定产生输出的视图的特定名称,然后它将模型、视图名称以及request请求一起发送给DispatcherServlet。
所以控制器并没有与视图进行耦合,因为传递给DispatcherServlet的视图名称并不是某一个指定的特殊的文件名称(如后缀名一定是JSP或其他什么名称),
它只要是一个可以产生输出和展示结果的逻辑名称就可以了。
5、DispatcherServlet会向一个视图解析器(ViewResolver)进行请求,视图解析器可以将逻辑视图名称映射到一个特定的视图显示文件上面。
6、现在DispatcherServlet知道哪一个视图文件可以显示结果了。该视图将会利用模板数据产生输出,这些输出通过response对象返回给客户端进行显示。
四、实例
1、导入 jar 包 (在 spring 官网下载 Spring 框架就会包含有 Spring MVC jar 包),如下图所示:
2、创建 web.xml 文件,代码如下:
<?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>springmvc</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>springmvc</servlet-name>
<!-- struts习惯使用/*,在springmvc不管用,访问路径以 .do 结尾 -->
<url-pattern>*.do</url-pattern>
</servlet-mapping>
</web-app>
3、创建 springmvc-servlet.xml 文件,说明:该文件名 - 符号的前面部分要和 web.xml 文件中 servlet-name 属性值一致 ,代码如下:
<?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:mvc="http://www.springframework.org/schema/mvc"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:aop="http://www.springframework.org/schema/aop"
xmlns:tx="http://www.springframework.org/schema/tx"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
http://www.springframework.org/schema/mvc
http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-3.0.xsd
http://www.springframework.org/schema/aop
http://www.springframework.org/schema/aop/spring-aop-3.0.xsd
http://www.springframework.org/schema/tx
http://www.springframework.org/schema/tx/spring-tx-3.0.xsd ">
<!-- 需要配置controller,handlerMapping,ViewResolver, interceptor -->
<!-- 默认的映射处理器(所有的映射处理器不写的情况下,默认为这个) -->
<bean class="org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping"></bean>
<!-- 使用默认的映射处理器来映射controller -->
<bean id="testController" name="/hello.do" class="com.learn.springmvc.TestController"></bean>
<!-- 前缀+ viewName +后缀 -->
<bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<!-- webroot到某一指定的文件夹的路径 -->
<property name="prefix" value="/WEB-INF/jsp/"></property>
<!-- 视图名称的后缀 -->
<property name="suffix" value=".jsp"></property>
</bean>
</beans>
以上使用的是默认的处理器,可以不写。
4、创建 java 类,代码如下:
package com.learn.springmvc;
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 TestController extends AbstractController {
@Override
protected ModelAndView handleRequestInternal(HttpServletRequest arg0,
HttpServletResponse arg1) throws Exception {
System.out.println("hello springmvc");
//构造器里面的字符串是目录和 jsp文件名组成的字符串,具体情况具体编写
return new ModelAndView("jsp1/index");
}
}
5、测试:
http://localhost:8080/learnSpringMVC1/hello.do
6、其他的映射处理器
<1>、简单url的映射处理器
<?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:mvc="http://www.springframework.org/schema/mvc"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:aop="http://www.springframework.org/schema/aop"
xmlns:tx="http://www.springframework.org/schema/tx"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
http://www.springframework.org/schema/mvc
http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-3.0.xsd
http://www.springframework.org/schema/aop
http://www.springframework.org/schema/aop/spring-aop-3.0.xsd
http://www.springframework.org/schema/tx
http://www.springframework.org/schema/tx/spring-tx-3.0.xsd ">
<!-- 需要配置controller,handlerMapping,ViewResolver, interceptor -->
<!-- 映射处理器之间是独立的,不相互影响 -->
<!-- 简单url的映射处理器 -->
<bean class="org.springframework.web.servlet.handler.SimpleUrlHandlerMapping">
<property name="mappings">
<props>
<prop key="/hello1.do">testController</prop>
</props>
</property>
</bean>
<bean id="testController" name="/hello.do" class="com.learn.springmvc.LearnController"></bean>
<!-- 前缀+ viewName +后缀 -->
<bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<!-- webroot到某一指定的文件夹的路径 -->
<property name="prefix" value="/WEB-INF/jsp/"></property>
<!-- 视图名称的后缀 -->
<property name="suffix" value=".jsp"></property>
</bean>
</beans>
测试:http://localhost:8080/learnSpringMVC1/hello1.do
<2>、控制器的类名映射处理器
<?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:mvc="http://www.springframework.org/schema/mvc"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:aop="http://www.springframework.org/schema/aop"
xmlns:tx="http://www.springframework.org/schema/tx"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
http://www.springframework.org/schema/mvc
http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-3.0.xsd
http://www.springframework.org/schema/aop
http://www.springframework.org/schema/aop/spring-aop-3.0.xsd
http://www.springframework.org/schema/tx
http://www.springframework.org/schema/tx/spring-tx-3.0.xsd ">
<!-- 需要配置controller,handlerMapping,ViewResolver, interceptor -->
<!-- 控制器的类名映射处理器 -->
<bean class="org.springframework.web.servlet.mvc.support.ControllerClassNameHandlerMapping"></bean>
<bean id="testController" name="/hello.do" class="com.learn.springmvc.TestController"></bean>
<!-- 前缀+ viewName +后缀 -->
<bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<!-- webroot到某一指定的文件夹的路径 -->
<property name="prefix" value="/WEB-INF/jsp/"></property>
<!-- 视图名称的后缀 -->
<property name="suffix" value=".jsp"></property>
</bean>
</beans>
测试:
http://localhost:8080/learnSpringMVC1/testController.do or
http://localhost:8080/learnSpringMVC1/test.do 都可以,首先字母一定要小写
说明:
工程结构:
xml 文件中属性值的说明:
参考:http://elf8848.iteye.com/blog/875830/
SpringMVC第一节,布布扣,bubuko.com
SpringMVC第一节