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

Struts2 <s:include>標簽示例

Struts2 <s:include>標簽用於直接包含JSP或HTML頁麵到當前頁麵。參見下麵<s:include>標簽的例子。

1. 動作

一個簡單的動作類隻做轉發任務。

IncludeTagAction.java

package com.gitbook.netmon.action;

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

2. <s:include>標簽示例

它顯示了使用<s:include>標簽包括一個yiibai.jsp頁麵到當前 include.jsp 頁麵。

include.jsp

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

<s:include value="/pages/yiibai.jsp"></s:include>

</body>
</html>

yiibai.jsp

<html>
<head>
</head>
 
<body>
</div><h2>Message from yiibai.jsp</h2>

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

4. 示例

http://localhost:8080/struts2includetag/includeTagAction.action

在瀏覽器中訪問上麵網址,結果輸出如下:

參考

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

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