Spring MVC学习笔记

MVC的简介

  • 前端控制器Front Controller(MVC)也称之为调度器(Dispatcher)---->控制器(Controller)
  • 控制器(Controller)了解所有的业务细节,负责业务数据的抽取,我们的视图模板(View template)了解所有的前端特性,负责页面呈现,我们的前端控制器(Front Controller)负责分发调度
  • MVC的核心思想是业务数据抽取同业务数据呈现相分离-->这也是一种解耦合

MVC的概念

Model + View + Controller

View:视图层,为用户提供一个UI,重点关注数据的呈现

Model:模型层,业务数据的信息表示,数据的载体,关注支撑业务的信息构成,通常是多个业务实体的组合

Controller:控制层,调用业务逻辑产生合适的数据(Model)传递数据给视图层用于呈现

什么是MVC?
  • MVC是一种架构模式

程序分层,分工合作,即相互独立,又协同工作。

  • MVC是一种思考方式

需要将什么信息展示给用户?(Model) 如何布局?(View) 调用那些业务逻辑?(Controller)

SpringMVC中的基本概念

SpringMVC中的静态概念

  • DispatcherServlet
  • Controller
  • HandlerAdapter(适配器):在DispatcherServlet内部使用的一个类
  • HandlerInterceptor
  • HandlerMapping:
    • help DispatcherServlet to get the right Controller请求到来之后使用哪一个Controller响应请求
    • Wrap Controller with HandlerInterceptor
  • HandlerExecutionChain
    • preHandler->Controller method --> postHandle --> afterCompletion
  • ModelAndView
  • ViewResolver 视图解析器:告诉DispatcherServlet使用哪个View来呈现视图。Help DispatcherServlet to Resolve the right view to render page.
  • View: V in MVC Responsible for page rendering


    SpringMVC流程.png

Spring MVC 的使用

web.xml的基本配置

注意web.xml的版本,我这里使用的是3.0版,只要是在2.3版本以上就可以默认的支持我们的jsp的EL表达式语言,因此这里选择比maven自动生成的头部更高的版本。

<?xml version = "1.0" encoding = "UTF-8"?>
<web-app xmlns="http://java.sun.com/xml/ns/javaee"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
          http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"
         version="3.0">


    <display-name>Spring MVC Study</display-name>

    <servlet>
        <servlet-name>spring-mvc</servlet-name>
        <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>

        <init-param>
            <param-name>contextConfigLocation</param-name>
            <param-value>classpath:spring/spring-mvc.xml</param-value>
        </init-param>
        <load-on-startup>1</load-on-startup>
    </servlet>
   
    <servlet-mapping>
        <servlet-name>spring-mvc</servlet-name>
        <url-pattern>/</url-pattern>
    </servlet-mapping>
</web-app>

spring-mvc.xml spring MVC配置文件

?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:mvc="http://www.springframework.org/schema/cache"
       xsi:schemaLocation="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.xsd http://www.springframework.org/schema/cache http://www.springframework.org/schema/cache/spring-cache.xsd">


    <!--开启自动包扫描-->
    <context:component-scan base-package="cn.fungus.controller"/>

    <!--开启spring-mvc的注解-->
    <context:annotation-config/>

    <!--扩充了注解驱动,可以将请求的url参数绑定到Controller中某个方法的参数-->
    <mvc:annotation-driven/>

    <!--静态资源处理:css,js,html,img-->
    <!--<mvc:resources mapping="/resources/**" location="/resource/"/>-->

    <!--配置ViewResolver的bean-->
    <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
        <property name="prefix" value="/WEB-INF/pages/">

        </property>
        <property name="suffix" value=".jsp">

        </property>
    </bean>


</beans>

基础的Controller编写

package cn.fungus.controller;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
/**
 * create by fungus on 2018/6/2
 **/

@Controller
public class HelloWorldController {

    @RequestMapping(value = "/hello")
    public String hello() {
        return "hello";
    }
}

基础的jsp页面的编写

<%--
  Created by IntelliJ IDEA.
  User: fungus
  Date: 2018/6/2
  Time: 13:06
  To change this template use File | Settings | File Templates.
--%>
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
    <title>hello world!</title>
</head>
<body>
    <h1>i am Hello World ,my father is HelloWorldController</h1>
</body>
</html>

需要会使用的注解

  • @Controller
  • @RequestMapping
  • URL template (@RequestParam and @PathVariable)
    • @RequestParam是用来匹配URL中的参数 比如:host:8080/hello/userId=100
    • @PathVariable用来匹配Restful标准的URL 比如:host:8080/hello/{userId},看起来更加的酷
  • HttpServletRequest and/or HttpSession

binding 页面扁平的文本信息绑定到多层次的文本对象

数据的绑定:

@ModelAttribute

添加数据之后的请求重定向:

  • redirect:
  • forward:

单文件上传

spring-mvc.xml中添加一个bean

<!--200*1024*1024即200M,resolveLazily启动是为了推迟文件解析,以便于捕获文件大小异常 -->
    <!--multipartResolver-->

    <!--背后依赖commons-fileupload包,所以需要引入这个包
     <dependency>
            <groupId>commons-fileupload</groupId>
            <artifactId>commons-fileupload</artifactId>
            <version>1.3.1</version>
     </dependency>
     -->
    <bean id="multipartResolver" class="org.springframework.web.multipart.commons.CommonsMultipartResolver">

        <property name="maxUploadSize" value="209715200"/>
        <property name="defaultEncoding" value="UTF-8"/>
        <!--延迟加载-->
        <property name="resolveLazily" value="true"/>
    </bean>

POM文件中引入

        <dependency>
            <groupId>commons-fileupload</groupId>
            <artifactId>commons-fileupload</artifactId>
            <version>1.3.1</version>
         </dependency>

需要添加两个Controller,一个用来控制显示上传的页面,一个用来执行上传的逻辑

@RequestMapping(value = "/upload", method = RequestMethod.GET)
    public String showUploadPage() {
        return "files";
    }

    @RequestMapping(value = "/doUpload", method = RequestMethod.POST)
    public String doUploadFile(@RequestParam("file") MultipartFile file) throws IOException {
        if (!file.isEmpty()) {
            System.out.println("Process file(): " + file.getOriginalFilename());
            FileUtils.copyInputStreamToFile(file.getInputStream(),
                    new File("C:\\Users\\fungus\\Desktop\\load", System.currentTimeMillis() + file.getOriginalFilename()));
        }

        return "success";
    }

file.jsp

<%--
  Created by IntelliJ IDEA.
  User: fungus
  Date: 2018/6/2
  Time: 14:40
  To change this template use File | Settings | File Templates.
--%>
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
    <title>Upload Files</title>
</head>
<body>
    <h1>上传附件</h1>
    <form method="post" action="/doUpload" enctype="multipart/form-data">
        <input type="file" name="file"/>
        <input type="submit"/>
    </form>
</body>
</html>

success.jsp

<%--
  Created by IntelliJ IDEA.
  User: fungus
  Date: 2018/6/2
  Time: 14:44
  To change this template use File | Settings | File Templates.
--%>
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
    <title>Success</title>
</head>
<body>
    <h1>Success</h1>
</body>
</html>

JSON

  • JSON(JavaScript Object Notation) 是一种轻量级的数据交换格式
  • Restful Web Service

Spring MVC 提供了一种ViewResolver

ContentNegotiatingViewResolver--->针对不同的请求对象提供不同的数据格式

  • 人--> JSPView
  • 机器 --> JsonView

标记json数据格式方法:

  • ResponseEntity
  • @ResponseBody/@ResquestBody
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 204,921评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 87,635评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 151,393评论 0 338
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,836评论 1 277
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,833评论 5 368
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,685评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,043评论 3 399
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,694评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 42,671评论 1 300
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,670评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,779评论 1 332
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,424评论 4 321
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,027评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,984评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,214评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,108评论 2 351
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,517评论 2 343

推荐阅读更多精彩内容