Struts 2 重定向

重定向结果类型调用标准的 response.sendRedirect() 方法,导致浏览器创建到给定位置的新请求。

我们可以使用 <result...> 元素中的 <param name = "location"> 来提供要重定向的位置。 重定向还支持 parse 参数。 这是一个使用 XML 配置的示例

<action name = "hello" 
   class = "com.tutorialspoint.struts2.HelloWorldAction"
   method = "execute">
   <result name = "success" type = "redirect">
       <param name = "location">
         /NewWorld.jsp
      </param >
   </result>
</action>

因此,只需修改我们的 Web/WEB-INF/classes/struts.xml 文件来定义上述重定向类型

<?xml version="1.0" encoding="UTF-8"?>

<!DOCTYPE struts PUBLIC
        "-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"
        "http://struts.apache.org/dtds/struts-2.0.dtd">

<struts>
    <constant name = "struts.devMode" value = "true" />

    <package name = "helloworld" extends = "struts-default">
        <action name = "hello"
                class = "com.jiyik.struts2.action.HelloWorldAction"
                method = "execute">
            <result name = "success" type = "redirect">
                <param name = "location">
                    /NewWorld.jsp
                </param >
            </result>
        </action>
    </package>
</struts>

这里 NewWorld.jsp 是一个新页面,只要我们的 Action 返回“success”,我们就会被重定向到该页面。 让我们保持 Web/WEB-INF/web.xml 不变,所以它的内容如下

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_4_0.xsd"
         version="4.0">

    <welcome-file-list>
        <welcome-file>index.jsp</welcome-file>
    </welcome-file-list>
    <filter>
        <filter-name>struts2</filter-name>
        <filter-class>org.apache.struts2.dispatcher.filter.StrutsPrepareAndExecuteFilter</filter-class>
    </filter>
    <filter-mapping>
        <filter-name>struts2</filter-name>
        <url-pattern>/*</url-pattern>
    </filter-mapping>
</web-app>

创建 Action 类文件 HelloWorldAction.java 如下

package com.jiyik.struts2.action;


import com.opensymphony.xwork2.ActionSupport;

public class HelloWorldAction extends ActionSupport {

    private String name;

    @Override
    public String execute() throws Exception {
        System.out.println("Inside action....");
        return SUCCESS;
    }

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }
}

然后我们创建主页 Web/index.jsp

<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
  <head>
    <title>Hello World</title>
  </head>
  <body>
  <h1>Hello World From Struts2</h1>
  <form action = "hello">
    <label for = "name">请输入您的姓名</label><br/>
    <input type = "text" name = "name"/>
    <input type = "submit" value = "Say Hello"/>
  </form>
  </body>
</html>

接下来创建 Web/NewWorld.jsp ,在Action 返回“success” 后将被重定向到该页面

<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
    <title>重定向页面</title>
</head>
<body>
<h1>New Page after redirection</h1>
</body>
</html>

然后我们在 IDEA 中启动服务,在浏览器中进行访问。在首页中我们输入任意字符串,都可以重定向到 NewWorld.jsp 页面

Struts 重定向

查看笔记

扫码一下
查看教程更方便