• SpringMVC如何转发及重定向(forward、redirect)


    • 返回值为字符串时,默认为视图名称。
    • 当返回值字符串是以”forward:”或者”redirect:”开头,则会被认为是转发或者重定向。

    使用方式如下:

    • 转发:forward:/hello/show.do或者forward:show.do
    • 重定向:redirect:/hello/show.do或者redirect:show.do

    注意:后面必须跟上URL路径而非视图名

    转发地址栏不变
    在这里插入图片描述
    重定向地址栏变化
    在这里插入图片描述
    变化后
    在这里插入图片描述

    在这里插入图片描述

    TestController11.java

    package com.deng.controller;
    
    import org.springframework.stereotype.Controller;
    import org.springframework.ui.Model;
    import org.springframework.web.bind.annotation.RequestMapping;
    import org.springframework.web.bind.annotation.RequestParam;
    
    //jstl的用法
    @Controller
    public class TestController11 {
    
        //转发
        @RequestMapping("show28")
        public String test28(){
            return "forward:/show29.do?type=forward";
        }
    
        @RequestMapping("show29")
        public String test29(Model model,@RequestParam("type") String type){
            model.addAttribute("msg11", "转发或重定向:type=" + type);
            return "forword_redirect";
        }
    
        //重定向
        /**
         * 重定向到/show29.do
         * @return
         */
        @RequestMapping("show30")
        public String test30(){
            return "redirect:/show29.do?type=redirect";
        }
    }
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34

    forword_redirect.jsp

    <%--
      Created by IntelliJ IDEA.
      User: U100926
      Date: 2022/09/02
      Time: 14:51
      To change this template use File | Settings | File Templates.
    --%>
    <%@ page contentType="text/html;charset=UTF-8" language="java" %>
    <%@ page isELIgnored="false" %>
    <html>
    <head>
        <title>Title</title>
    </head>
    <body>
    <span style="font-size:30px; color:darkgreen;">${msg11}</span>
    </body>
    </html>
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
  • 相关阅读:
    Linux操作文档——MySQL搭建MyCAT(5.7.26)
    腾讯云国际代充-GPU服务器安装驱动教程NVIDIA Tesla
    基于ModelCoder的汽车悬挂系统建模
    Python 创建或读取 Excel 文件
    EasyExcel使用
    C++11之constexpr
    移动端适配推荐flexible和 postcss-px2rem
    Map<String, Object> 和 com.fasterxml.jackson.databind.node.ObjectNode区别
    EquiVSet
    视频高效剪辑,批量调整视频速度,让视频更加精彩
  • 原文地址:https://blog.csdn.net/djydjy3333/article/details/126659882