JSP 中自定义标签的 Javadoc
我正在使用扩展 TagSupport 和 tld 的类创建自定义 JSP 标记。我想创建一个 javadoc,以便当设计者使用这些标签时,例如在 eclipse 中,在 ctrl+space (在 Windows 中)上,设计者必须获取标签信息,并且标签中的每个属性都应该发生同样的事情。我尝试在课堂上给出 /** .. */ ,但没有成功。如何做到这一点?如果有更简单的工具,请提及教程链接。
I am creating a custom JSP tag using a class which extends TagSupport and a tld. I want to create a javadoc such that when a designer uses these tags, like for example in eclipse, on ctrl+space (in windows), the designer must get tag info and same thing should happen for each atribute in the tag. I tried giving /** .. */ in class, it did not work. How to do this ? If there is an easier tool, please mention tutorial link.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
它应该位于
的
元素和.tld< 中的
元素。 /代码> 文件。例如
It should go in
<description>
element of the<tag>
and<attribute>
elements in the.tld
file.E.g.