1.Spring MVC

1)什么是Spring MVC
Spring MVC是Spring框架中一个模块,实现MVC结构,便于简单,快速开发MVC结构的WEB应用,Spring MVC提供的API封装WEB开发中常用的功能,简化WEB开发的过程

2)Spring MVC 的核心组件
DispatcherServlet (控制器,请求入口)
HandlerMapping (控制器,请求派发)
Controller (控制器,请求处理)
ModelAndView (封装业务处理结果和跳转视图)
ViewResolver (视图显示处理器)

3)Spring MVC的处理流程
浏览器向服务器发送请求 -> 请求交给前端控制器DispatcherServlet -> 前端控制器通过HandlerMapping找到相对应的Controller组件处理请求,执行Contriller组件的约定方法,在约定方法中调用模型层组件来完成业务处理,约定方法返回一个ModeAndView对象,此对象封装处理结果和跳转的视图名称,前端控制器接收到ModelAndView对象之后,调用ViewResolver组件定位View(JSP)传递数据信息,生成相应页面。

2.基于XML配置的MVC应用

搭建Spring MVC环境
创建WEB工程,导入Spring MVC相关开发包
Spring ioc,web,webmvc开发包
在src下添加Spring XML配置文件
名称可以自定义,例如spring-mvc.xml
在web.xml中配置DispacherServlet前端控制器
配置DispacherServlet,同时指定XML配置文件的路径

Controller组件负责执行具体业务处理,编写时需要实现Controller接口及约定方法handleRequest

handleRequest方法返回一个ModelAndView对象,此对象封装处理结果数据和跳转的视图名称

ModelAndView(String viewName)

ModelAndView(String viewName,Model model)

viewName是视图名称,model是处理的结果数据

HandleMapping(是接口)组件,映射请求URL和请求处理器Controller组件对应关系

SimpleUrlHandlerMapping(实现接口)维护一个个的HTTP请求和Controller映射关系列表(Map),根据列表映射对应关系调用Controller

ViewResolver(是接口)组件,对ModelAndView对象封装的视图名称进行解析

InternalResourceViewResolver(实现接口的子类),它支持Servlet和jsp及子类jstlView响应

  <!-- 前端控制器 -->
<servlet>
<servlet-name>dispatcherServlet</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class> <init-param>
<param-name>contextConfigLocation</param-name>
<param-value>classpath:spring.xml</param-value>
</init-param> <load-on-startup>1</load-on-startup><!-- 启动服务器的时候加载配置,设置优先级 --> </servlet> <servlet-mapping>
<servlet-name>dispatcherServlet</servlet-name>
<url-pattern>*.do</url-pattern> <!-- 以这个结尾的请求才会走前端控制器 -->
</servlet-mapping>

3.基于注解配置的MVC应用

Controller注解应用
推荐使用@Controller注解声明Controller组件,这样就不需要控制器组件实现Controller接口,不需要约定方法
好处:使得控制器定义更加灵活,可以不用去实现Controller接口,请求处理方法可以灵活定义

为了使用使@Controller注解生效,需要在Spring的XML配置文件中开启组件扫描定义
<context:component-scan base-pack=""/>

RequestMapping注解应用
@RequestMapping注解可以用在类定义前和方法定义上,表明此组件类的方法与哪一个请求对应

为了使@ResquestMapping注解生效,需要在Spring的XML配置文件中开启MVC注解扫描
<mvc:annotation-driven/>

4.接收请求参数

Spring MVC请求提交数据到控制器有以下方式
1)使用HttpServletRequest获取
Spring框架自动参数注入到HttpServletRequest中
优点:直接通过HttpServletRequest的getParameter()方法
缺点:需要自己处理数据类型的转换

2)使用@RequestParam注解
Spring会自动将参数注入到方法参数(请求参数名和处理方法的变量名 名称一致)
使用@RequestParam注解映射不一致的名称
优点:参数类型自动转换,但可能出现类型转换异常

3)使用自动封装成Bean对象
定义实体类,属性名必须与请求参数名相同

package com.xms.controller;

import javax.servlet.http.HttpServletRequest;

import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.servlet.ModelAndView; import com.xms.entity.User; @Controller
@RequestMapping("/test")
public class TestController { //HttpServletRequest接受请求参数
@RequestMapping("/testOne.do")
public ModelAndView testOne(HttpServletRequest request){ String username=request.getParameter("username");
String password=request.getParameter("password"); System.out.println(username);
System.out.println(password); return new ModelAndView("hello");
} //方法参数接受请求参数(@RequestParam注解可以解决方法参数名和请求参数名不一致的情况)
@RequestMapping("/testTwo")
public ModelAndView testTwo(@RequestParam("username")String username,@RequestParam("password")String pwd){
System.out.println(username);
System.out.println(pwd);
return new ModelAndView("hello"); } //对象接收参数
@RequestMapping("/testThree")
public ModelAndView testThree(User user){
System.out.println(user.getUsername());
System.out.println(user.getPassword());
return new ModelAndView("hello");
} }
    <h1>表单</h1>
<form action="/SpringMybatisDay03_03/test/testThree.do" method="post" >
账号:<input type="text" name="username" />
密码:<input type="password" name="password" />
<input type="submit" value="提交"> </form>
<?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:context="http://www.springframework.org/schema/context"
xmlns:jdbc="http://www.springframework.org/schema/jdbc"
xmlns:jee="http://www.springframework.org/schema/jee"
xmlns:tx="http://www.springframework.org/schema/tx"
xmlns:aop="http://www.springframework.org/schema/aop"
xmlns:mvc="http://www.springframework.org/schema/mvc"
xmlns:util="http://www.springframework.org/schema/util"
xmlns:jpa="http://www.springframework.org/schema/data/jpa"
xsi:schemaLocation="
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.2.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.2.xsd
http://www.springframework.org/schema/jdbc http://www.springframework.org/schema/jdbc/spring-jdbc-3.2.xsd
http://www.springframework.org/schema/jee http://www.springframework.org/schema/jee/spring-jee-3.2.xsd
http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.2.xsd
http://www.springframework.org/schema/data/jpa http://www.springframework.org/schema/data/jpa/spring-jpa-1.3.xsd
http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-3.2.xsd
http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-3.2.xsd
http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-3.2.xsd" > <context:component-scan base-package="com.xms"></context:component-scan>
<mvc:annotation-driven></mvc:annotation-driven> <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<property name="prefix" value="/WEB-INF/"></property>
<property name="suffix" value=".jsp"></property>
</bean> </beans>
public class User {

    private String username;
private String password;
public String getUsername() {
return username;
}
public void setUsername(String username) {
this.username = username;
}
public String getPassword() {
return password;
}
public void setPassword(String password) {
this.password = password;
} }

5.向页面传值
当Controller组件处理后,需要向jsp传值的方法
1)直接使用HttpServletRequest或HttpSession

2)使用ModelAndView对象

3)使用ModelMap参数对象
在Controller处理方法中追加一个ModelMap类型的参数

注意:数据会利用HttpServletRequest的attitude属性传递到页面

SpringMyBatisDay03的更多相关文章

随机推荐

  1. rabbitmq日志记录进出的每条消息

    参考: https://blog.csdn.net/u013256816/article/details/76039201 https://blog.csdn.net/aosica321/articl ...

  2. vue 项目要使用的库

    1.Stylus是一个CSS预处理器. npm install stylus --save-dev npm install stylus-loader --save-dev 使用 <style ...

  3. parted分区脚本

    #!/bin/bash #Used to fomat 6 disks PATH=/bin:/sbin:/usr/bin:/usr/sbin export PATH disk_to_parted=&qu ...

  4. C语言位操作--判断两整数是否异号

    判断两整数是否异号: int x, y; //输入比较的两数 bool f = ((x ^ y) < 0); // 返回真,当且仅当x与y异号 说明:当x.y异号,x与y的最高位分别为0和1,取 ...

  5. Ant的Manifest任务

    建立一个清单文件,他将放入某个jar,作为jar文件的说明书.其中,在清单文件可以指定jar文件的main-class,jar文件将可以直接运行.例子: <manifest >   < ...

  6. redmine3.3.0安装问题

    1.An error occurred while installing rmagick (2.16.0), and Bundler cannot continue. Make sure that ` ...

  7. centos7搭建ELK开源实时日志分析系统

    Elasticsearch 是个开源分布式搜索引擎它的特点有分布式零配置自动发现索引自动分片索引副本机制 restful 风格接口多数据源自动搜索负载等. Logstash 是一个完全开源的工具他可以 ...

  8. [Windows] 使用SC 命令管理与配置服务

    sc config wuauserv start= demand sc config wuauserv start= disabled

  9. vue--简单数据绑定

    <template> <div id="app"> {{msg}} //绑定数据 {{obj.name}} //绑定对象 <p v-for=" ...

  10. python开发环境搭建(windows+python2.7.5+django1.5.4)【原创】

    先插入一条广告,博主新开了一家淘宝店,经营自己纯手工做的发饰,新店开业,只为信誉!需要的亲们可以光顾一下!谢谢大家的支持!店名: 小鱼尼莫手工饰品店经营: 发饰.头花.发夹.耳环等(手工制作)网店: ...