I have a Spring+Hibernate+H2 project that I made by basing of an example I found on the Internet. It\'s working great except that every time I run a unit test, the db is wiped.
It's the property name="hibernate.hbm2ddl.auto" value="create" />
which is dropping n re-creating schema everytime.
change it to update, so it will only create it first time if not there.