1. 程式人生 > >Struts2中動態的指定返回的結果集

Struts2中動態的指定返回的結果集

1.在Struts2中,可以在struts.xml配置檔案中動態的指定返回的結果集。用${屬性名}的方式取得Action類中的屬性,在服務端判斷好相應的跳轉路徑,然後存到變數裡,然後再在struts.xml配置檔案中用ognl表示式 ${屬性名} 這種方式取出來,可以極大的增加配置檔案的靈活性。接下來用一個例子來介紹如何動態的指定返回的結果集。

注:其中一定要為動態結果的儲存值設定set和get方法。

2.首先,新建一個Struts2專案,專案名為RegisterResult,專案結構如下圖所示:

(1).新建一個register.jsp頁面,要求我們輸入使用者名稱,密碼,性別,點選註冊按鈕後提交表單資訊到Action,具體程式碼如下:

<%@ page language="java" import="java.util.*" pageEncoding="utf-8"%>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
  <head>
    <base href="<%=basePath%>">
    
    <title>My JSP 'register.jsp' starting page</title>
    
	<meta http-equiv="pragma" content="no-cache">
	<meta http-equiv="cache-control" content="no-cache">
	<meta http-equiv="expires" content="0">    
	<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
	<meta http-equiv="description" content="This is my page">
	<!--
	<link rel="stylesheet" type="text/css" href="styles.css">
	-->

  </head>
  
  <body>
    <center>
    	<form action="user/user" method="post">
    		使用者名稱:<input type="text" name="username"/><br/>
    		密碼:<input type="password" name="password"/><br/>
    		性別:<input type="radio" value="男" name="sex" checked="checked">男
    		<input type="radio" value="女" name="sex">女<br/>
    		<input type="submit" value="註冊"/>
    		<input type="reset" value="重置"/>
    	</form>
    </center>
  </body>
</html>

新建一個registerSuccess.jsp頁面,返回註冊成功後的資訊,利用struts2自帶的標籤來獲取註冊資訊,程式碼如下:

<%@ page language="java" import="java.util.*" pageEncoding="utf-8"%>
<%@ taglib uri="/struts-tags" prefix="s" %>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
  <head>
    <base href="<%=basePath%>">
    
    <title>My JSP 'user_success.jsp' starting page</title>
    
	<meta http-equiv="pragma" content="no-cache">
	<meta http-equiv="cache-control" content="no-cache">
	<meta http-equiv="expires" content="0">    
	<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
	<meta http-equiv="description" content="This is my page">
	<!--
	<link rel="stylesheet" type="text/css" href="styles.css">
	-->

  </head>
  
  <body>
    註冊成功<br/>
    使用者名稱為:<s:property value="username"/><br/>
   密碼為:<s:property value="password"/><br/>
   性別為:<s:property value="sex"/>
   <s:debug></s:debug>
  </body>
</html>

新建一個registerError.jsp頁面,返回註冊失敗,並提供一個超連結讓我們重新註冊,程式碼如下:

<%@ page language="java" import="java.util.*" pageEncoding="utf-8"%>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
  <head>
    <base href="<%=basePath%>">
    
    <title>My JSP 'user_error.jsp' starting page</title>
    
	<meta http-equiv="pragma" content="no-cache">
	<meta http-equiv="cache-control" content="no-cache">
	<meta http-equiv="expires" content="0">    
	<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
	<meta http-equiv="description" content="This is my page">
	<!--
	<link rel="stylesheet" type="text/css" href="styles.css">
	-->

  </head>
  
  <body>
    註冊失敗!<a href="register.jsp">請重新註冊</a>
  </body>
</html>

(2).接著新建一個Action類,類名為RegisterAction,放在com.gk包下,其中一定不能忘了為動態結果的儲存值設定set和get方法,這裡就要為動態結果的儲存值,即r屬性設定set和get方法,程式碼如下:

package com.gk;

import com.opensymphony.xwork2.ActionSupport;

public class RegisterAction extends ActionSupport {
	private String username;
	private String password;
	private String sex;
	private String r;
	public String getUsername() {
		return username;
	}
	public void setUsername(String username) {
		this.username = username;
	}
	public String getPassword() {
		return password;
	}
	public void setPassword(String password) {
		this.password = password;
	}
	public String getSex() {
		return sex;
	}
	public void setSex(String sex) {
		this.sex = sex;
	}
	public String getR() {
		return r;
	}
	public void setR(String r) {
		this.r = r;
	}
	
	public String execute(){
		if(!username.equals("") && !password.equals("")){
			r="/registerSuccess.jsp";
		}else{
			r="/registerError.jsp";
		}
		return "success";
	}
}

(3).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.enable.DynamicMethodInvocation" value="true"></constant>
	<constant name="struts.devMode" value="true"></constant>
	<package name="user" namespace="/user" extends="struts-default">	
		<action name="user" class="com.gk.RegisterAction">
			<result>${r}</result>
		</action>
	</package>
</struts>

注:${}的作用是用於在配置檔案中從Value stack(值棧)中取值。

其中上面的配置中用${r},就表示從Value stack(值棧)中取RegisterAction類中的r這個成員屬性的值,其中必須要為這個成員屬性設定set和get方法。

在RegisterAction類中指定了r的值,如果使用者名稱和密碼不為空時,r就為"/registerSuccess.jsp"。通過這樣就動態的確定了result的值。

3.部署此專案到Tomcat伺服器上,開啟Tomcat伺服器,執行後如下所示:

輸入使用者名稱和密碼:

點選註冊按鈕後,返回註冊資訊:

點選上圖的Debug按鈕,出現下圖,其中使用者的資訊和RegisterAction類裡的r屬性的值都在Value stack(值棧)裡面:

如果使用者名稱和密碼為空的話,返回註冊失敗資訊,要求我們重新註冊,會出現下圖的情況:

點選請重新註冊按鈕,又會回到註冊頁面去了。

4.以上內容僅供大家學習參考,寫得不好,請見諒,如有錯誤,請指出,謝謝!