需要什么<要求>和用于?

发布于 2024-12-25 10:47:21 字数 209 浏览 3 评论 0原文

我正在研究自定义标记库,但我很困惑如何在 TLD 文件中使用 标记来定义自定义标记属性。

  1. 这些标签是什么?
  2. 我们应该在它们之间写什么?
  3. 写完这些标签后我们会得到什么行为?

I was working on custom tag libraries and I was confused how the <required> and <rtexprvalue> tags are used in the TLD file to define a custom tag attribute.

  1. What are these tags?
  2. What should we write in-between them?
  3. What behavior do we get after writing these tags?

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

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

发布评论

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

评论(2

逆光下的微笑 2025-01-01 10:47:21

required 非常简单地暗示了它所说的内容。该属性是必需的或强制的。

rtexprvalue 表示运行时表达式值。这意味着该属性可以支持 scriptlet 值。

elexprvalue 表示它可以支持 EL(表达式语言)值。

因此,如果您将 requiredattr 定义为 required=truertexprvalue=true 并且 elattribute 定义为 < code>elexprvalue=true,可以这样写:

<myprefix:mytag requiredattr="<%=baz.getId()%>" elattribute="${foo.bar}"/>

required quite simply implies what it says. The attribute is required or mandatory.

rtexprvalue means Runtime Expression Value. It means the attribute can support scriptlet values.

elexprvalue means it can support EL (expression language) values.

So, if you have requiredattr defined as both required=true and rtexprvalue=true and elattribute is defined as elexprvalue=true, you can write as follows:

<myprefix:mytag requiredattr="<%=baz.getId()%>" elattribute="${foo.bar}"/>
蓬勃野心 2025-01-01 10:47:21

TLD 中定义的 元素捕获属性的动态行为。这
值可以是 true 或 false。动态列中的假值意味着
只能为该属性指定静态字符串值。真值意味着
可以指定请求时间属性值。正如 JSP 规范中所定义的,
“请求时属性值”可以是 Java 表达式、EL 表达式或
设置的值。

元素定义嵌套属性是必需的还是可选的。如果不存在,则默认值为“false”,即该属性是可选的。

The <rtexprvalue> element defined in a TLD captures the dynamic behavior of an attribute. The
value can be either true or false. A false value in the dynamic column means that
only a static string value can be specified for the attribute. A true value means that a
request-time attribute value can be specified. As defined in the JSP specification, a
“request-time attribute value” can be either a Java expression, an EL expression, or a
value set by a <jsp:attribute>.

The <required> element defines if the nesting attribute is required or optional. If not present then the default is "false", i.e the attribute is optional.

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