Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

If #{myBean.birthdate} is of java.util.Calendar or java.util.Date type, can I possibly format this inside the EL itself using an existing function perhaps, with the output of like the one produced by the DateFormat's SHORT, MEDIUM,LONG abd FULL output type?

Instead of outputting the complete form for the #{myBean.birthdate}: Wed Jan 19 19:01:42 WIT 2011, I just prefer a simple output of Jan 19, 2011.

Should I use #{formatBean.format(myBean.birthdate)} instead?

share|improve this question

2 Answers

up vote 33 down vote accepted
 <h:outputText value="#{someBean.dateField}" >
              <f:convertDateTime pattern="dd.MM.yyyy HH:mm" />
 </h:outputText>
share|improve this answer
life.java - Jigar Joshi Wow, this is something new for me, very nice ! Thank you ! But what about this following case ? Im using primefaces, and the date value is to be embedded in the attribute value. For example, <p:panel header="searching data for #{myBean.dateField}" ... />. – Albert Kam Jan 19 '11 at 12:18

With EL 2 (Expression Language 2) you can use this type of construct for your question:

    #{formatBean.format(myBean.birthdate)}

Or you can add an alternate getter in your bean resulting in

    #{myBean.birthdateString}

where getBirthdateString returns the proper text representation. Remember to annotate the get method as @Transient if it is an Entity.

share|improve this answer

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.