什么是 JSTL?什么是 JSP 标签库?有什么区别?

发布于 2025-01-04 12:42:36 字数 256 浏览 1 评论 0原文

我读过很多这方面的内容!但我却无法给出一个明确的想法! JSTL 用于避免 JSP 文件中出现 Java 代码。我看到很多变体! ... 有时,人们将它们称为标签库。

我想我在这里错过了一些东西!请帮忙。什么是JSTL?什么是标签库?有什么区别吗? 在某些情况下,您需要 c.tld 文件,但我从未听说过 jsp.tld 文件。这是为什么?

I have read a lot about this! But I can't make a clear idea! JSTL is used to avoid Java code in JSP files. I see many variant! <jsp:useBean> or <c:out>...
And sometimes, people refer to them as Tag Libs.

I think that I miss something here! Help please. What's JSTL? What are Tag Libraries? Are there any differences?
In some situations, you need a c.tld file, but I never heard about a jsp.tld file. Why is that?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

や莫失莫忘 2025-01-11 12:42:36
  • 标签库是可以在 JSP 中使用的 Java 代码片段,但它们符合特定的 API,并且看起来像 JSP 中的 HTML 标签。
  • 标签库描述文件 (TLD) 描述了这些标签的名称、它们可以具有哪些属性以及实现它们的 Java 类。
  • Java 标准模板库 (JSTL) 是一个特定的标准化标签库
  • < /code>不是标签库标签(尽管看起来像一个)。它是 JSP 标准中定义的操作。是的,这是一个有问题的设计。
  • Tag libraries are pieces of Java code that can be used within a JSP, but which conform to a certain API and which look like HTML tags in the JSP.
  • A tag library description file (TLD) describes the names of these tags, what attributes they can have and what Java classes implement them
  • The Java Standard Template Library (JSTL) is a specific standardized tag library
  • <jsp:useBean> is not a tag library tag (despite looking like one). It's an action defined in the JSP standard. Yes, this is questionable design.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文