如何为tagfile属性指定允许的值?

时间:2014-08-01 16:36:34

标签: jsp jsp-tags tagfile

JSP tag file中,您可以指定标记支持的属性。对于特定属性,您是否可以指定该属性的合法选项(如果您为该属性指定了合法选项以外的其他内容,则页面会抛出错误)?

1 个答案:

答案 0 :(得分:1)

不在taglib的TLD文件中。您将每个属性的getter和setter添加到您编写的自定义标记类中,并在setter方法中检查属性的值(并在必要时拒绝它们)。

以下是一个很好的概述:http://www.tutorialspoint.com/jsp/jsp_custom_tags.htm