I\'ve \'inherited\' a project which uses Spring annotations to manage transactions/sessions with Hibernate. Or at least it\'s meant to be. Currently the Hibernate sessions n
if the transaction (which is annotated) succeeds then transaction.commit()
is called automatically which will write the contents to the DB, please check if the transaction is being called and there are no exceptions being thrown.
also ensure that you link your sessionfactory to the transcation which is declared.