Queria gravar no meu banco no formato dd/MM/yyyy _só que esta gravando dessa maneri_a dd/MM/yyyy HH:mm:ss meu projeto:
<p:calendar id="button"
value="#{atendimentoBack.atendimento.data}"
pattern="dd/MM/yyyy" mask="true" />
Index.xhtml
<p:calendar id="button"
value="#{atendimentoBack.atendimento.data}"
pattern="dd/MM/yyyy" mask="true" />
<p:calendar id="button"
value="#{atendimentoBack.atendimento.data}"
pattern="dd/MM/yyyy" mask="true" >
AtendimentoBack.java
private AtendimentosEntity atendimento; gets e sets
public String salvar(){
if(atendimento.getId() != null){
new AtendimentoBO().atualizar(atendimento);
}
else
{
new AtendimentoBO().cadastrar(atendimento);
}
AtendimentoEntity.java
@Column(name = "DATA")
private Date data;
gets e sets