如何找到 JSP 标记库背后的代码?
我正在 Tomcat5 上工作(并迁移到 tomcat6)。我们使用 JSP 标签库,因为这就是网站交付给我们的方式。供应商构建了他们的标签,这非常有用,但我像黑匣子一样操作它们。我知道什么进去,我知道什么出去,我知道在每个 JSP 页面的标题中放置哪一行。
如果您有标签,如
所示
<irv:validate name="status" datatype="API.STAT" datasource="local">*
,并且您知道标签行如下所示,
<%@ taglib uri="/WEB-INF/tlds/inv.tld" prefix="irv" %>
您如何找到其背后的 Java 代码?
感谢所有帮助。
I'm working on Tomcat5 (and migrating to tomcat6). We use JSP taglibs because that's how the site was delivered to us. The vendor build their tags, which has been very useful, but I've operated them like a black box. I know what goes in, I know what goes out, I know what one line to put in the header of each JSP page.
If you have tag, like <irv:>
as in
<irv:validate name="status" datatype="API.STAT" datasource="local">*
and you know the tag line looks like this
<%@ taglib uri="/WEB-INF/tlds/inv.tld" prefix="irv" %>
How do you find the Java code behind it all?
All help appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在文本编辑器中读取
/WEB-INF/tlds/inv.tld
文件。它包含标签定义,对于
,它将包含类似
的内容,为您提供支持 Java 的完整限定类名标签的代码。另请参阅:
Read the
/WEB-INF/tlds/inv.tld
file in a text editor. It contains tag definitions and for the<irv:validate>
it'll contain something likeThe
<tag-class>
gives you the full qualified classname of the backing Java code of the tag.See also: