为什么我无法在此 JSP 自定义标记中将 scriptlet 属性传输到 JSTL?
字符串:
${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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的网络应用程序是什么版本?如果不知何故您仍在使用 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 tofalse
.