在Spring MVC中,页面重定向可以通过redirect关键字来实现。下面是一个简单的Spring MVC页面重定向的例子。

1. 创建Controller:
package com.example.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;

@Controller
public class RedirectController {

    @RequestMapping(value = "/redirectExample", method = RequestMethod.GET)
    public ModelAndView redirectExample() {
        // 使用redirect:前缀指定重定向
        return new ModelAndView("redirect:/redirectedPage");
    }

    @RequestMapping(value = "/redirectedPage", method = RequestMethod.GET)
    public ModelAndView redirectedPage() {
        // 渲染重定向后的页面
        ModelAndView modelAndView = new ModelAndView("redirectedPage");
        modelAndView.addObject("message", "This is the redirected page!");
        return modelAndView;
    }
}

2. 创建JSP视图:

在src/main/webapp/WEB-INF/views目录下创建一个redirectedPage.jsp文件,用于显示重定向后的页面内容:
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
    <title>Redirected Page</title>
</head>
<body>
    <h2>${message}</h2>
</body>
</html>

3. 配置spring-mvc-servlet.xml:

在src/main/webapp/WEB-INF目录下创建一个spring-mvc-servlet.xml文件,配置Spring MVC:
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:mvc="http://www.springframework.org/schema/mvc"
       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/mvc
       http://www.springframework.org/schema/mvc/spring-mvc.xsd
       http://www.springframework.org/schema/context
       http://www.springframework.org/schema/context/spring-context.xsd"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">

    <!-- 开启组件扫描 -->
    <context:component-scan base-package="com.example.controller" />

    <!-- 开启注解驱动 -->
    <mvc:annotation-driven />

    <!-- 配置视图解析器 -->
    <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
        <property name="prefix" value="/WEB-INF/views/" />
        <property name="suffix" value=".jsp" />
    </bean>
</beans>

4. 运行:

在你的IDE中运行或将项目打包并部署到支持Servlet容器的环境中。访问http://localhost:8080/your-project-name/redirectExample,应该能看到重定向后的页面内容。

在这个例子中,redirectExample方法使用ModelAndView对象并指定redirect:/redirectedPage,这表示执行页面重定向。在redirectedPage方法中,渲染了redirectedPage.jsp页面,并通过ModelAndView对象传递了消息。


转载请注明出处:http://www.pingtaimeng.com/article/detail/6970/Spring