Package com.github.dactiv.orm.test

Source Code of com.github.dactiv.orm.test.CreateTestInitializeDataBaseSqlFile

package com.github.dactiv.orm.test;

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

public class CreateTestInitializeDataBaseSqlFile {
 
  public static void main(String[] args) {
   
    Configuration configuration = new Configuration().configure().setNamingStrategy(new ImprovedNamingStrategy());
    SchemaExport export = new SchemaExport(configuration);
   
    export.setFormat(false);
    export.setOutputFile("src/test/resources/h2schma.sql");
    export.create(true, false);
  }
}
TOP

Related Classes of com.github.dactiv.orm.test.CreateTestInitializeDataBaseSqlFile

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.