jsp .tag 文件可以通过 tld 文件(如 Java TagSupport 类)包含吗?
我的大部分标签都是使用 .tag 文件完成的,因为这样使用 html 会更容易。然而,我的 Web 应用程序期望这些标签位于 web.xml/tags 目录中,当在多个 Web 应用程序之间共享标签时,这会很痛苦。
如果我理解正确,扩展 TagSupport 的 java 标签类可以在源代码中包含 tld,并且可以轻松导入标签。我可以对 .tag 文件执行类似的操作,以便将它们保存在共享父项目中,而不必担心将它们复制到 Web 应用程序中的各个标记文件夹中吗?有没有办法让 tld 指向类路径上的 .tag 文件?
Most of my tags are done with .tag files, as its much easier to work with html that way. However, my web applications expect these tags in the web.xml/tags directory, which is a pain when a tag is shared among multiple web apps.
If i understand correct, a java tag class that extends TagSupport can include the tld in the source code, and the tag can be imported easily. Can I do something like that for my .tag files so I can keep them in a shared parent project and not worry about copying them to individual tag folders in my web applications? Is there a way for a tld to point to a .tag file on the classpath?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
此页面说:
和
This page says:
and