I started JPA 2.1 with Hibernate, and had the following lines in my persistence.xml
<property name="javax.persistence.schema-generation.scripts.action" value="drop-and-create"/>
<property name="javax.persistence.schema-generation.scripts.create-target" value="META-INF/sampleCreate.ddl"/>
<property name="javax.persistence.schema-generation.scripts.drop-target" value="META-INF/sampleDrop.ddl"/>
The tables are generated into my postgres DB.
However, there is no sampleCreate.dll in my META-INF folder, nor error.
What is missing here? Is it generated to other folder?
Thanks.