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

Struts2 <s:a>標簽示例

Struts2 <s:a>標簽用於渲染一個 HTML 的“<a>” 標簽。最好的做法是使用<s:url>標簽來創建URL,並將其嵌入到<a>標簽。 例如,


<s:url value="http://www.google.com" var="googleURL" />
<s:a href="%{googleURL}">Google</s:a>
在本教學中,它顯示了3種方式來使用Struts2 <s:a>標簽。

1. 動作

Action類轉發請求。

ATagAction.java

package com.gitbook.netmon.action;

import com.opensymphony.xwork2.ActionSupport;
 
public class ATagAction extends ActionSupport{
	
	public String execute() {
		return SUCCESS;
	}
	
}

2. <s:a>標簽示例

JSP頁麵顯示使用“<s:a>”標簽,以不同的方式呈現 URL

a.jsp

<%@ taglib prefix="s" uri="/struts-tags" %>
 <html>
<head><title>Struts2 <s:a>標簽示例</title>
</head>
 
<body>
<h1>Struts2 a tag example</h1>

<ol>

<li>
<s:url value="http://www.gitbook.net" var="yiibaiURL" />
<s:a href="%{yiibaiURL}">J2EE web development tutorials</s:a>
</li>

<li>
<s:a href="http://www.google.com">Google search engine</s:a>
</li>

<li>
<s:url action="aTagAction.action" var="aURL" />
<s:a href="%{aURL}">aTagAction</s:a>
</li>

</ol>

</body>
</html>

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="aTagAction" 
			class="com.gitbook.netmon.action.aTagAction" >
			<result name="success">pages/a.jsp</result>
		</action>
		
	</package>
</struts>

4. 示例

在瀏覽器中打開上述標簽,將顯示結果如下:

輸出HTML源碼如下:

<html> 
<head>
</head> 
<body> 
<h1>Struts2 <s:a>標簽示例</h1> 
 
<ol> 
<li> 
<a href="http://www.gitbook.net">J2EE web development tutorials</a> 
</li> 
 
<li> 
<a href="http://www.google.com">Google search engine</a> 
</li> 
 
<li> 
<a href="/struts2atag/aTagAction.action">aTagAction</a> 
</li> 
</ol> 
 
</body> 
</html>

參考

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

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