注意,实现的方法必须是静态的
<%...@ taglib uri=" http://hxex.cn/vote " prefix="vote" %>
<c:forEach var="vote" itens="${votes}">
<tr>
<td>${vote.name}</td>
<td>${vote.title}</td>
<td>${vote:votetype(vote.votetype)}</td>
<td>${vote:pictype(vote.pictype)}</td>
<td alinhar="centro">
<a href="vote_update.jsp?id=${vote.id}">Utilização do sistema</a>
<a href="<%=context %>/deleteVote.do?id=${vote.id}">删除投票</a>
<a href="voteitem_updatein.jsp?id=${vote.id}">Como usar</a>
</td>
</tr>
</c:forEach>
<?xml version="1.0" encoding="UTF-8" ?>
<taglib xmlns=" http://java.sun.com/xml/ns/j2ee "
xmlns:xsi=" http://www.w3.org/2001/XMLSchema-instance "
xsi:schemaLocation=" http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-jsptaglibrary_2_0.xsd "
versão="2.0">
<description>biblioteca de funções de votação</description>
<nome para exibição>Votar</nome para exibição>
<tlib-versão>1.0</tlib-versão>
<nome curto>votar</nome curto>
<uri>http://hxex.cn/vote</uri>
<função>
<name>tipo de voto</name>
<classe de função>cn.hxex.vote.util.VoteFunction</classe de função>
<função-assinatura>java.lang.String votetype(java.lang.String)</função-assinatura>
</função>
<função>
<name>pictype</name>
<classe de função>cn.hxex.vote.util.VoteFunction</classe de função>
<função-assinatura>java.lang.String pictype(java.lang.String)</função-assinatura>
</função>
<função>
<name>opções de tipo de voto</name>
<classe de função>cn.hxex.vote.util.VoteFunction</classe de função>
<função-assinatura>java.lang.String votetypeoptions(java.lang.String)</função-assinatura>
</função>
<função>
<name>opções de pictype</name>
<classe de função>cn.hxex.vote.util.VoteFunction</classe de função>
<função-assinatura>java.lang.String pictypeoptions(java.lang.String)</função-assinatura>
</função>
</taglib>
pacote cn.hxex.vote.util;
classe pública VoteFunction ...{
public static String votetype(String votetype)...{
retornar SelectConst.getVoteTypeTitle(votetype);
}
public static String votetypeoptions(String defaultValue)...{
retornar SelectConst.getVoteTypeOptions(defaultValue);
}
public static String pictype(String pictype)...{
retornar SelectConst.getPicTypeTitle(pictype);
}
public static String pictypeoptions(String defaultValue)...{
retornar SelectConst.getPicTypeoptions(defaultValue);
}
}
http://blog.csdn.net/daryl715/archive/2007/02/11/1507387.aspx