Struts的component标签实战

一 视图

<%@ page contentType="text/html; charset=GBK" language="java" errorPage="" %>
<%@taglib prefix="s" uri="/struts-tags"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <title>使用s:component标签</title>
</head>
<body>
<h3>使用s:component标签</h3>
使用默认主题(xhtml),默认主题目录(template)<br/>  
使用mytemplate.jsp作为视图组件
<s:component template="mytemplate.jsp">
    <s:param name="list" value="{'疯狂Java讲义'
    ,'轻量级Java EE企业应用实战'
    ,'疯狂iOS讲义'}"/>
</s:component>
<hr/>
使用自定义主题,自定义主题目录<br/>  
使用myAnotherTemplate.jsp作为视图组件
<s:component
    templateDir="myTemplateDir"
    theme="myTheme"
    template="myAnotherTemplate.jsp">
    <s:param name="list" value="{'疯狂Java讲义'
    ,'轻量级Java EE企业应用实战'
    ,'疯狂iOS讲义'}" />
</s:component>
</body>
</html>

二 模板

1 template\xhtml\mytemplate.jsp

<%@ page contentType="text/html; charset=GBK" language="java"%>
<%@taglib prefix="s" uri="/struts-tags" %>
<div style="background-color:#eeeeee;">
<b>JSP自定义模板<br/>
请选择您喜欢的图书<br/></b>
<s:select list="parameters.list"/>
</div>

2 myTemplateDir\myTheme\myAnotherTemplate.jsp

<%@ page contentType="text/html; charset=GBK" language="java"%>
<%@taglib prefix="s" uri="/struts-tags" %>
<div style="background-color:#bbbbbb;">
JSP自定义模板<br/>
请选择您喜欢的图书<br/>
<select>
<s:iterator value="%{top.parameters.list}">
    <option><s:property/></option>
</s:iterator>
</select>
</div>

三 测试

Struts的component标签实战

上一篇:Struts基于map的类型转换


下一篇:Struts的updownselect标签