Hibernate's 'hbm2ddl.auto' property with value 'create' is not re-creating table
问题 I'm working on my first simple Hibernate application. The crux of the problem is, I had renamed a member of persistent class (with apt changes to all other parts) and re-run the application. As 'hbm2ddl.auto' property is assigned 'create' value in configuration xml, Hibernate is expected to create new table on every run but, it's not doing so. Following is detailed information: CLASS: public class Event { private Long id; private String title; private Date date; public Event() { // this form