位置:首頁 > Java技術 > Struts2教學 > Struts2 <s:debug>標簽示例

Struts2 <s:debug>標簽示例

在Struts2在 <s:debug> 標簽是一個非常有用的調試標記輸出“值棧”的內容,並在網頁中“堆棧上下文”的詳細信息。在本教學,在JSP頁麵中顯示如何使用<s:debug>標簽。


1. 動作

一個簡單的Action類,帶有 propertyInStack 屬性,顯示疊加後的值。

DebugTagAction.java

package com.gitbook.netmon.action;

import com.opensymphony.xwork2.ActionSupport;
 
public class DebugTagAction extends ActionSupport{
	
	public String propertyInStack;

	public String getPropertyInStack() {
		return propertyInStack;
	}

	public void setPropertyInStack(String propertyInStack) {
		this.propertyInStack = propertyInStack;
	}

}

2. <s:date>標簽示例

在JSP頁麵使用<s:debug>標簽輸出係統的“值棧”和“棧上下文”。

debug.jsp

<%@ taglib prefix="s" uri="/struts-tags" %>
 <html>
<head>
</head>
 
<body>
<h1>Struts2 <s:debug>標簽示例 - www.gitbook.net</h1>

<s:debug />

</body>
</html>
將生成一個名為 debug 文字鏈接,點擊文字鏈接獲得調試的詳細信息。

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.devMode" value="true" />
	<package name="default" namespace="/" extends="struts-default">
	
		<action name="debugTagAction" 
			class="com.gitbook.netmon.action.DebugTagAction" >
			<result name="success">pages/debug.jsp</result>
		</action>
		
	</package>
</struts>

4. 示例

http://localhost:8080/struts2debugtag/debugTagAction.action

在瀏覽器中打開上麵的網址,輸出結果如下:

參考


  1. Struts2 <s:debug>標簽文檔

下載代碼 - http://pan.baidu.com/s/1gdEvJGZ