是否可以创建一个接受非字符串属性的自定义JSTL标记?
我想创建一个使用Spring MVC中的PagedListHolder来处理分页的标记。
<%@tag body-content="scriptless" description="basic page template" pageEncoding="UTF-8"%>
<%-- The list of normal or fragment attributes can be specified here: --%>
<%@attribute name="pagedList" required="true" %>
<%-- any content can be specified here e.g.: --%>
<%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
<c:choose>
<c:when test="${!pagedList.firstPage}">
<a href="
<c:url value="pagedList">
<c:param name="page" value="${pagedList.page - 1}"/>
</c:url>
"><<
</a>
</c:when>
<c:otherwise>
<<
</c:otherwise>
</c:choose>
<%-- ...more --%>
此标记需要PagedListHolder类的实例。
有点像这样,但我意识到这是无效的。
<templ:pagedList pagedList="${players}"/>
我是否需要编写标记处理程序来实现此目的?
答案 0 :(得分:8)
您只需在属性指令中指定type
属性即可。
<%@ attribute name="pagedList" required="true" type="org.springframework.beans.support.PagedListHolder" %>
答案 1 :(得分:2)
简而言之:允许JSTL标签具有非字符串属性,因为您使用的是spring mvc,您的标记类可能如下所示:
public class PagedListTag extends RequestContextAwareTag {
private PagedListHolder pagedList;
@Override
protected int doStartTagInternal() throws Exception {
// do something with pagedList
return SKIP_BODY;
}
@Override
public void doFinally() {
this.pagedList = null;
super.doFinally();
}
public void setPagedListed(PagedListHolder pagedList) {
this.pagedList = pagedList;
}
}
您唯一需要做的就是使用.tld文件中的pagedList属性正确注册:
...
<tag>
<name>pagedList</name>
<tag-class>PagedListTag</tag-class>
<body-content>JSP</body-content>
<attribute>
<name>pagedList</name>
<required>true</required>
<rtexprvalue>true</rtexprvalue>
</attribute>
</tag>
...