如何找到 JSP 标记库背后的代码?

发布于 2024-11-03 19:50:45 字数 437 浏览 0 评论 0原文

我正在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

撞了怀 2024-11-10 19:50:45

在文本编辑器中读取 /WEB-INF/tlds/inv.tld 文件。它包含标签定义,对于 ,它将包含类似

<tag>
    <name>validate</name>
    <tag-class>com.example.ValidateTag</tag-class>
    ...
</tag>

的内容,为您提供支持 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 like

<tag>
    <name>validate</name>
    <tag-class>com.example.ValidateTag</tag-class>
    ...
</tag>

The <tag-class> gives you the full qualified classname of the backing Java code of the tag.

See also:

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文