我正在尝试将自定义标记与变量一起使用
例如)
<c:forEach var="test" items="itemstest">
${test}
</c:forEach>
在上面的代码中,我可以访问test
标记内的<c:forEach>
值
我需要创建一个具有类似功能的自定义标签
我从标题http://docs.oracle.com/javaee/5/tutorial/doc/bnamu.html
下的oracle docs Declaring Tag Variables for Tag Handlers
获得了信息
任何人都可以帮我实现相同的例子。
答案 0 :(得分:0)
您好我已经按照以下方式解决了这个问题
class: test.java
public void doTag() throws JspException, IOException {
getJspContext().getOut().flush();
//any method or operation
super.doTag();
getJspContext().setAttribute(variable, "Hello");
}
为变量
创建getter settertld file:
<tag>
<name>test</name>
<tag-class>com.org.test</tag-class>
<body-content>empty</body-content>
<attribute>
<name>inputValue</name>
<required>true</required>
<rtexprvalue>true</rtexprvalue>
</attribute>
<attribute>
<name>variable</name>
<required>true</required>
<rtexprvalue>true</rtexprvalue>
</attribute>
</tag>
jsp file:
<%@ taglib uri="/WEB-INF/tld/tldfilename.tld" prefix="tag" %>
<tag:test inputValue="hello" variable="testValue"/>
${testValue}
答案 1 :(得分:0)
对于这么简单的事情,你可能最好使用标记文件,这样可以很容易地使用普通jsp语法的一些小的附加内容来创建标记库(并且是标准的一部分)
http://docs.oracle.com/javaee/1.4/tutorial/doc/JSPTags5.html
A&#34;标记有变量&#34;使用属性声明完成,JSP代码非常简单:
<%@tag pageEncoding="utf-8" %>
<%-- dont forget to add declaration for JSTL here -->
<%@attribute name="test" type="java.lang.String" required="true" %>
<c:forEach var="test" items="itemstest">
${test}
</c:forEach>
请参阅关于whre的链接文档并命名文件,以便在您自己的jsp文件中访问它们。