关于spring:SpringMVC-请求重定向和转发

35次阅读

共计 4645 个字符,预计需要花费 12 分钟才能阅读完成。

SpringMVC 学习记录

留神:以下内容是学习 北京能源节点 的 SpringMVC 视频后所记录的笔记、源码以及集体的了解等,记录下来仅供学习

第 4 章 SpringMVC 核心技术

4.1 申请重定向和转发

 当处理器对申请处理完毕后,向其它资源进行跳转时,有两种跳转形式:申请转发与重 定向。而依据所要跳转的资源类型,又可分为两类:跳转到页面与跳转到其它处理器。
留神,对于申请转发的页面, 能够是 WEB-INF 中页面; 而重定向的页面,是不能为 WEB-INF 中页的。因为重定向相当于用户再次收回一次申请,而用户是不能间接拜访 WEB-INF 中资 源的。

SpringMVC 框架把原来 Servlet 中的申请转发和重定向操作进行了封装。当初能够应用简 单的形式实现转发和重定向。

forward: 示意转发,实现 request.getRequestDispatcher("xx.jsp").forward()
redirect: 示意重定向,实现 response.sendRedirect("xxx.jsp")

4.1.1 申请转发

4.1.2 申请重定向

我的项目构造:

以下是源码:

  • colntroller
package com.bjpowernode.controller;

import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.servlet.ModelAndView;

import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import javax.servlet.http.HttpSession;
import javax.xml.ws.RequestWrapper;

/**
 * @RequestMapping:
 *    value:所有申请地址的公共局部,叫做模块名称
 *    地位:放在类的下面
 */
@Controller
public class MyController {
    /**
     * 处理器办法返回 ModelAndView, 实现转发 forward
     * 语法:setViewName("forward: 视图文件残缺门路")
     * forward 特点:不和视图解析器一起应用,就当我的项目中没有视图解析器
     */
    @RequestMapping(value = "/doForward.do")
    public ModelAndView doSome(){
        // 解决 some.do 申请了。相当于 service 调用解决实现了。ModelAndView mv  = new ModelAndView();
        mv.addObject("msg","欢送应用 springmvc 做 web 开发");
        mv.addObject("fun","执行的是 doSome 办法");
        // 显示转发
        //mv.setViewName("forward:/WEB-INF/view/show.jsp");

        mv.setViewName("forward:/hello.jsp");
        return mv;
    }

    /**
     * 处理器办法返回 ModelAndView, 实现重定向 redirect
     * 语法:setViewName("redirect: 视图残缺门路")
     * redirect 特点:不和视图解析器一起应用,就当我的项目中没有视图解析器
     *
     * 框架对重定向的操作:* 1. 框架会把 Model 中的简略类型的数据,转为 string 应用,作为 hello.jsp 的 get 申请参数应用。*   目标是在 doRedirect.do 和 hello.jsp 两次申请之间传递数据
     *
     * 2. 在指标 hello.jsp 页面能够应用参数汇合对象 ${param} 获取申请参数值
     *    ${param.myname}
     *
     * 3. 重定向不能拜访 /WEB-INF 资源
     */
    @RequestMapping(value = "/doRedirect.do")
    public ModelAndView doWithRedirect(String name,Integer age){
        // 解决 some.do 申请了。相当于 service 调用解决实现了。ModelAndView mv  = new ModelAndView();
        // 数据放入到 request 作用域
        mv.addObject("myname",name);
        mv.addObject("myage",age);
        // 重定向
        //mv.setViewName("redirect:/hello.jsp");
        //http://localhost:8080/ch08_forard_redirect/hello.jsp?myname=lisi&myage=22
        // 重定向不能拜访 /WEB-INF 资源
        mv.setViewName("redirect:/WEB-INF/view/show.jsp");
        return mv;
    }
}
  • springmvc.xml
<?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"
       xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/context https://www.springframework.org/schema/context/spring-context.xsd">

    <!-- 申明组件扫描器 -->
    <context:component-scan base-package="com.bjpowernode.controller" />

    <!-- 申明 springmvc 框架中的视图解析器,帮忙开发人员设置视图文件的门路 -->
    <bean  class="org.springframework.web.servlet.view.InternalResourceViewResolver">
        <!-- 前缀:视图文件的门路 -->
        <property name="prefix" value="/WEB-INF/view/" />
        <!-- 后缀:视图文件的扩展名 -->
        <property name="suffix" value=".jsp" />
    </bean>
</beans>
  • maven pom.xml
<?xml version="1.0" encoding="UTF-8"?>

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  <modelVersion>4.0.0</modelVersion>

  <groupId>com.bjpowernode</groupId>
  <artifactId>ch08-forard-redirect</artifactId>
  <version>1.0-SNAPSHOT</version>
  <packaging>war</packaging>

  <properties>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    <maven.compiler.source>1.8</maven.compiler.source>
    <maven.compiler.target>1.8</maven.compiler.target>
  </properties>

  <dependencies>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>4.11</version>
      <scope>test</scope>
    </dependency>
    <!--servlet 依赖 -->
    <dependency>
      <groupId>javax.servlet</groupId>
      <artifactId>javax.servlet-api</artifactId>
      <version>3.1.0</version>
      <scope>provided</scope>
    </dependency>
    <!--jsp 依赖 -->
    <dependency>
      <groupId>javax.servlet.jsp</groupId>
      <artifactId>jsp-api</artifactId>
      <version>2.2.1-b03</version>
      <scope>provided</scope>
    </dependency>
    <!--springmvc 依赖 -->
    <dependency>
      <groupId>org.springframework</groupId>
      <artifactId>spring-webmvc</artifactId>
      <version>5.2.5.RELEASE</version>
    </dependency>
  </dependencies>

  <build>
    <plugins>
      <!-- 编码和编译和 JDK 版本 -->
      <plugin>
        <artifactId>maven-compiler-plugin</artifactId>
        <version>3.1</version>
        <configuration>
          <source>1.8</source>
          <target>1.8</target>
        </configuration>
      </plugin>
    </plugins>
  </build>
</project>

forward:示意转发
redirect:示意重定向
forward 和 redirect 都是关键字,有一个独特的特点不和视图解析器一起工作

扩大:
forward 和 redirect 他们都能够拜访 视图文件,比方某个 jsp,html
forward:/hello.jsp forward:/main.html
forward 和 redirect 他们都能够拜访其它的 controller
forward:/some.do , redirect:/other.do
处理器办法能够返回 ModelAndView, String , void 都能够应用 forward,redirect

正文完
 0