the atribbute on my bean
@Temporal(value = TemporalType.TIMESTAMP)
private Date data;
The date is correctly saved on database
but in the JSF the date is showing wrong. Days are lost
the JSF code
<p:column>
<f:facet name="header">
<h:outputText value="Data" />
</f:facet>
<h:outputText value="#{contadores.dataCalendar.time}" >
<f:convertDateTime pattern="dd/MM/yyyy" />
</h:outputText>
</p:column>