Hi,
I cannot update an existing element into my db, I doesn't have any exception
here is my code
Code:
Localisation parcelle = getRemoteParcelleDao().findById(
selectedParcelle.getId());
if (parcelle != null) {
LOG.debug("PARCELLE EXIST WILL BE UPDATE " + selectedParcelle.getId() + " " + selectedParcelle.getLieuDit() + " AND SELECTED LOCALISATION = " + parcelle.getId() + " " + parcelle.getLieuDit());
remoteParcelleDao.update(selectedParcelle);
}
And my dao code for update
Code:
public void update(Localisation parcelle) {
getHibernateTemplate().update(parcelle);
}