什么是MVC

  • MVC:全称model view controller,模型、视图、控制器,是一种软件设计规范,也就是说它不是设计模式
  • 本质 是将业务逻辑,数据,显示 分离的方式来编写代码,前后端分离
  • Model:数据模型,提供要展示的数据,一般我们都会把这两个分离开,数据Dao层,服务层Service层。
    view:负责进行数据的渲染和展示,是客户想看到的东西
    Controller:接收用户请求,交给Model处理,从Model更新后的数据或者结果,返回给前端,就是一个调度员
  • 面向接口编程
    最典型的案例是JSP:View + Servlet:Controller + JavaBean:Model;

Model1

早期的web开发中,用的是Model1模式

有两层:视图层和模型层

springmvc session共享_SpringMVC


优点:架构简单,适合小型项目的开发

缺点:JSP职责不单一,不便于维护

Model2

将项目分为三个模块:M: 模型 V:视图 C:控制器

springmvc session共享_SpringMVC_02

职责分析

Controller

  • 取得表单的数据
  • 调用业务的逻辑算法
  • 转向指定的页面

Model

  • Dao:操作数据库
  • Service:业务逻辑
  • 保存数据的更新状态

View

  • 显示页面

Model2优化了Model1时代的缺点,让所有层职责更加分明;降低了维护难度。

SpringMVC

SpringMVC 是 Spring的一部分,是基于Java实现的MVC的轻量级Web框架
SpringMVC的优势:

  • 趋势,使用的人多
  • 简单,易学,轻量级
  • 高效,基于请求和相应的MVC框架
  • 约定大于配置
  • 功能强大:RestFul、数据验证、格式化{json}、主题,本地化、异常处理…

官网上说Spring的web模块提供了大量独特的功能,包括:

清晰的角色划分:控制器(controller)、验证器(validator)、 命令对象(command object)、表单对象(form object)、模型对象(model object)、 Servlet分发器(DispatcherServlet)、 处理器映射(handler mapping)、视图解析器(view resolver)等等。 每一个角色都可以由一个专门的对象(类)来实现。< Bean>

强大而直接的配置方式:将框架类和应用程序类都能作为JavaBean配置,而且支持跨多个context 的引用。

可适配、非侵入:可以根据不同的应用场景,选择合适的控制器子类 (simple型、command型、form型、wizard型、multi-action型或者自定义),而不是从单一控制器 (比如Action/ActionForm)继承。

可重用的业务代码:可以使用现有的业务对象作为命令或表单对象,而不需要去扩展某个特定框架的基类。

可定制的绑定(binding) 和验证(validation):比如将类型不匹配作为应用级的验证错误, 这可以保存错误的值。再比如本地化的日期和数字绑定等等。在其他某些框架中,你只能使用字符串表单对象, 需要手动解析它并转换到业务对象。

可定制的handler mapping和view resolution:Spring提供从最简单的URL映射, 到复杂的、专用的定制策略。与某些web MVC框架强制开发人员使用单一特定技术相比,Spring显得更加灵活。

灵活的model转换:在Springweb框架中,使用基于Map的 键/值对来达到轻易地与各种视图技术的集成。

可定制的本地化和主题(theme)解析:支持在JSP中可选择地使用Spring标签库、支持JSTL、支持Velocity(不需要额外的中间层)等等。

简单而强大的JSP标签库(Spring Tag Library):支持包括诸如数据绑定和主题(theme) 之类的许多功能。它提供在标记方面的最大灵活性。

JSP表单标签库:在Spring2.0中引入的表单标签库,使得在JSP中编写 表单更加容易。

Spring Bean的生命周期可以被限制在当前的HTTP Request或者HTTP Session。 准确的说,这并非Spring MVC框架本身特性,而应归属于Sping MVC使用的WebApplicationContext容器。

正因为SpringMVC较Struct2好 , 简单 , 便捷 , 易学 , 天生和Spring无缝集成(使用SpringIoC和Aop) , 使用约定优于配置 . 能够进行简单的junit测试 . 支持Restful风格 .异常处理 , 本地化 , 国际化 , 数据验证 , 类型转换 , 拦截器 等等…所以我们要学习 .

SpringMVC框架围绕着DispatcherServlet(Servlet请求分发器)设计;

springmvc session共享_MVC_03

HelloSpringMVC

利用Maven创建一个web项目

1、导包
注意资源过滤问题

<dependencies>
  <!--junit包单元测试-->
  <dependency>
    <groupId>junit</groupId>
    <artifactId>junit</artifactId>
    <version>4.11</version>
    <scope>test</scope>
  </dependency>
  <!-- Spring MVC 及 Spring系列包 -->
  <dependency>
    <groupId>org.springframework</groupId>
    <artifactId>spring-webmvc</artifactId>
    <version>4.3.24.RELEASE</version>
  </dependency>
  <!--jstl 和 jsp的包-->

  <!--Servlet核心-->
  <dependency>
    <groupId>javax.servlet</groupId>
    <artifactId>javax.servlet-api</artifactId>
    <version>4.0.1</version>
  </dependency>
  <!-- JSTL -->
  <dependency>
    <groupId>javax.servlet</groupId>
    <artifactId>jstl</artifactId>
    <version>1.2</version>
  </dependency>
  
</dependencies>


<build>
    <!--解决资源导出问题-->
    <resources>
      <resource>
        <directory>src/main/java</directory>
        <includes>
          <include>**/*.properties</include>
          <include>**/*.xml</include>
        </includes>
        <filtering>false</filtering>
      </resource>
      <resource>
        <directory>src/main/resources</directory>
        <includes>
          <include>**/*.properties</include>
          <include>**/*.xml</include>
        </includes>
        <filtering>false</filtering>
      </resource>
    </resources>
</build>

2、编写Controller类

  • 需要给类加注解:@Controller,可以让IOC容器管理,等价于Bean
  • 请求映射的路径:@RequestMapping(‘路径’),如果类上有就先写类的,再写方法的
  • Model:模型传递参数
  • return “hello”; 它会去视图解析中拼接前缀和后缀来找到对应的视图
package com.anye.controller;

import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.RequestMapping;

@Controller
@RequestMapping("/hello")
public class HelloWorldController {
    @RequestMapping("/hi")
    public String hi(Model model){
        model.addAttribute("msg","Hello,SpringMVC");
        System.out.println("进入了Hello");
        return "hello";
        //WEB-INF/jsp/hello.jsp
    }
}

3、编写SpringMVC的配置文件

  1. 让IOC的注解生效
  2. 静态资源过滤 :HTML . JS . CSS . 图片 , 视频 …
  3. MVC的注解驱动 :
  4. 配置视图解析器
<?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"
       xsi:schemaLocation="
        http://www.springframework.org/schema/beans
        https://www.springframework.org/schema/beans/spring-beans.xsd
        http://www.springframework.org/schema/context
        https://www.springframework.org/schema/context/spring-context.xsd
        http://www.springframework.org/schema/mvc
        https://www.springframework.org/schema/mvc/spring-mvc.xsd">

    <!--扫描指定包下的注解,让指定的类能够被IOC容器管理-->
    <context:component-scan base-package="com.anye.controller"/>

    <!--静态资源过滤-->
    <mvc:default-servlet-handler/>

    <!--annotation-driven:支持MVC注解驱动 -->
    <mvc:annotation-driven/>

    <!--
    视图解析器
    作用;方便统一管理
    -->
    <bean id="InternalResourceViewResolver" class="org.springframework.web.servlet.view.InternalResourceViewResolver">
        <property name="prefix" value="/WEB-INF/jsp/"/>
        <property name="suffix" value=".jsp"/>
    </bean>


</beans>

4、注册SpringMVC核心Servlet

  • 注册DispatcherServlet
  • 关联SpringMVC的配置文件
  • 启动级别为1
  • 映射路径为 / 【不要用/*,会404】
<?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"
         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">
  <servlet>
    <servlet-name>SpringMVC</servlet-name>
    <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
    <!--关联SpringMVC配置文件-->
    <init-param>
      <param-name>contextConfigLocation</param-name>
      <param-value>classpath:springmvc-servlet.xml</param-value>
    </init-param>
    <!--这个东西要和服务器一起启动;
    load-on-startup,启动级别,数字越小级别越高!-->
    <load-on-startup>1</load-on-startup>
  </servlet>
  <!--所有请求都会经过这个DispatcherServlet请求分发器-->
  <!--

  /和/*的区别:
  < url-pattern > / </ url-pattern > 不会匹配到.jsp, 只针对我们编写的请求;
    即:.jsp不会进入spring的 DispatcherServlet类 。
  < url-pattern > /* </ url-pattern > 会匹配*.jsp,
    会出现返回jsp视图时再次进入spring的DispatcherServlet 类,导致找不到对应的controller所以报404错。
  -->
  <servlet-mapping>
    <servlet-name>SpringMVC</servlet-name>
    <url-pattern>/</url-pattern>
  </servlet-mapping>


  <welcome-file-list>
    <welcome-file>index.jsp</welcome-file>
  </welcome-file-list>
</web-app>

5、视图层

  • 注意视图的位置,要和视图解析器对应web-inf/jsp,放在web-inf下是因为这里用户无法直接访问,更加安全
  • 可以通过EL表达式去除Model中存放的值或者对象

springmvc session共享_SpringMVC_04

<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
    <title>SpringMVC</title>
</head>
<body>

${msg}

</body>
</html>

6、测试

启动tomcat进行测试

springmvc session共享_MVC_05

注意url路径

springmvc session共享_MVC_06