们的值。在开发期间,我注意到 <form> 标记为所有包含表单的页面的页 面名称动态包含一个隐藏的 form 字段。这个隐藏的字段通过在出现验证逻辑错误时转发 回相同页面而帮助验证。
<![CDATA[<stripes:link/>]]>:这是 Stripes 应用程序中用于链接到 页面和 ActionBean 事件的 Stripes HTML <link> 标记。使用 Stripes <link> 标记,您可以指定一个 ActionBean 类作为 URL,还可以指定 ActionBean 事件。可以将 Add、edit 和 Delete 链接与 GlossaryActionBean 类中的方法相关联。 事件属性映射到 ActionBean handler() 方法。
<![CDATA[<stripes:link-param/>]]>:您使用该标记来传递请求参数( 比如术语 ID)给 ActionBean。
利用Stripes、Apache Derby和Eclipse进行无配置的J2EE开发(二)(8)
时间:2011-03-26 IBM B.J. Allmon
清单 10. /glossary/index.jsp
<![CDATA[
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<%@ page contentType="text/html;charset=UTF-8" language="java"% >
<%@ taglib prefix="stripes"
uri="http://stripes.sourceforge.net/stripes.tld"%>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"% >
<html>
<head>
<link rel="stylesheet" type="text/css"
href="${pageContext.request.contextPath}/style/glossary.css" />
<script src="${pageContext.request.contextPath}/scripts/glossary.js"></script> ;
<title>Glossary 1.0</title>
</head>
<body>
<div class="contentBorder">
<a href="${pageContext.request.contextPath}">
<img border="0" src="${pageContext.request.contextPath}/images/glossary.gif"
class="logo" />
</a>
<div class="contentBody">
<div class="title">
There are <c:out value="${actionBean.resultSize}" /> entries
</div>
<stripes:form action="/glossary/action/Glossary.action">
<table cellpadding="0" cellspacing="0" border="0" width="100%" class="dataTbl">
<tr>
<th>Word</th>
<th>Definition</th>
<th>
<stripes:link href="/glossary/action/Glossary.action" event="addForm">
Add
</stripes:link>
</th>
</tr>
<tr>
<td colspan="2"></td>
</tr>
<c:forEach items="${actionBean.results}" var="row">
<tr>
<td style="padding-right:4px;"><c:out value="${row.term}" /></td>
<td><c:out value="${row.definition}" /></td>
<td style="padding-left:4px;" nowrap>
<stripes
|