|
I am using the new JPA 2.1 property "javax.persistence.schema-generation.database.action" with the value "drop-and-create". Hibernate generate the table-statements but does not drop the tables first. This makes my integration tests with Arquillian who do multiple consecutive deploys not work.
I have tried both the ExampleDS datasource in WildFly that use an in-memory H2 database and my own datasource that connects to a networked MySQL server.
|