Package eu.semberal.reminders

Source Code of eu.semberal.reminders.JpaSchemaExporter

package eu.semberal.reminders;

import org.hibernate.cfg.AnnotationConfiguration;
import org.hibernate.cfg.Configuration;
import org.hibernate.tool.hbm2ddl.SchemaExport;

public class JpaSchemaExporter {
    public static void main(String[] args) {
        Configuration c = new AnnotationConfiguration().configure();
        SchemaExport export = new SchemaExport(c);
        export.setDelimiter(";");
        export.setOutputFile("sql-out.sql");
        export.create(false, false);
    }
}
TOP

Related Classes of eu.semberal.reminders.JpaSchemaExporter

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.