Spring + Hibernate: I can't delete a record from a table
问题 I am quite new in Spring field and in this time I am studying how integrate it with Hibernate to create my DAO object but I am finding some difficulties with the DELETE operation... So I have a person table and I have create this concrete class that implement my DAO object: package org.andrea.myexample.HibernateOnSpring.dao; import java.util.List; import org.andrea.myexample.HibernateOnSpring.entity.Person; import org.hibernate.Criteria; import org.hibernate.Session; import org.hibernate