为什么我无法在此 JSP 自定义标记中将 scriptlet 属性传输到 JSTL?

发布于 2024-09-26 16:10:19 字数 595 浏览 2 评论 0原文

字符串:

${prettyDate}

通过此自定义标记而不是美化的日期字符串输出到页面:

<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<%@ tag import="com.ocpsoft.pretty.time.PrettyTime, java.util.Date"%>
<%@ attribute name="dateParam" required="true" type="java.util.Date" %>

<%
 PrettyTime p = new PrettyTime();
 String prettyDate = p.format(dateParam);
 jspContext.setAttribute("prettyDate", prettyDate);
%>
<c:out value="${prettyDate}"/>

为什么我这样做会阻止 scriptlet 属性 (prettyDate) 传输到此 JSP 自定义标记中的 JSTL?

The string:

${prettyDate}

is output to the page by this custom tag instead of the prettified Date string:

<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<%@ tag import="com.ocpsoft.pretty.time.PrettyTime, java.util.Date"%>
<%@ attribute name="dateParam" required="true" type="java.util.Date" %>

<%
 PrettyTime p = new PrettyTime();
 String prettyDate = p.format(dateParam);
 jspContext.setAttribute("prettyDate", prettyDate);
%>
<c:out value="${prettyDate}"/>

Why am I doing that prevents the scriptlet attribute (prettyDate) from being transferred to the JSTL in this JSP custom tag?

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

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

发布评论

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

评论(1

无妨# 2024-10-03 16:10:19

您的网络应用程序是什么版本?如果不知何故您仍在使用 JSP 1.2,则必须将 isELIgnored 页面指令显式设置为 false

What version is your web application? If somehow you are still using JSP 1.2, you have to explicitly set the isELIgnored page directive to false.

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