👁 Screen-Shot-2014-10-15-at-23.34.25
Ok, so you have been using the hibernate property name=“hibernate.hbm2ddl.auto” value=“update” to continuously update your database schema, but now you need a complete DDL script?
Use this method from you Global Class onStart to export the DDL scripts. Just give it the package name (with path) of your Entities as well as a file name:
public void onStart(Application app) {
exportDatabaseSchema("models", "create_tables.sql");
}
public void exportDatabaseSchema(String packageName, String scriptFilename) {
final Configuration configuration = new Configuration();
final Reflections reflections = new Reflections(packageName);
final Set<Class<?>> classes = reflections.getTypesAnnotatedWith(Entity.class);
// iterate all Entity classes in the package indicated by the name
for (final Class<?> clazz : classes) {
configuration.addAnnotatedClass(clazz);
}
configuration.setProperty("hibernate.dialect", "org.hibernate.dialect.PostgreSQL9Dialect");
SchemaExport schema = new SchemaExport(configuration);
schema.setOutputFile(scriptFilename);
schema.setDelimiter(";");
schema.execute(Target.SCRIPT, SchemaExport.Type.CREATE ); // just export the create statements in the script
}That is it!
Thanks to @MonCalamari for answering my Question on Stackoverflow here.
| Reference: | How to use Hibernate to generate a DDL script from your Play! Framework project from our JCG partner Brian Porter at the Poornerd blog. |
Do you want to know how to develop your skillset to become a Java Rockstar?
Subscribe to our newsletter to start Rocking right now!
To get you started we give you our best selling eBooks for FREE!
1. JPA Mini Book
2. JVM Troubleshooting Guide
3. JUnit Tutorial for Unit Testing
4. Java Annotations Tutorial
5. Java Interview Questions
6. Spring Interview Questions
7. Android UI Design
and many more ....
I agree to the Terms and Privacy Policy
Thank you!
We will contact you soon.
👁 Photo of Brian Porter
Brian PorterOctober 17th, 2014Last Updated: October 16th, 2014
Brian PorterOctober 17th, 2014Last Updated: October 16th, 2014
0 259 1 minute read

This site uses Akismet to reduce spam. Learn how your comment data is processed.