Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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?

share|improve this question

1 Answer

up vote 2 down vote accepted

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.

share|improve this answer
That was it. Thanks. – jts Oct 5 '10 at 16:52

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.