2

我目前正在使用带有 hibernate3-maven-plugin 的 Hibernate 3.6.9。我使用目标 hbm2ddl 生成一个 sql 模式文件。

该插件不支持 Hibernate 4.1.2。如何生成架构文件?

4

1 回答 1

2

hibernate3-maven-plugin只需调用SchemaExport来生成模式文件。为什么不自己手动调用呢?

例子 :

Configuration config = new Configuration();

Properties properties = new Properties();

properties.put("hibernate.dialect", "org.hibernate.dialect.PostgreSQLDialect");
properties.put("hibernate.connection.url", "jdbc:postgresql://localhost:5432/Test"); 
properties.put("hibernate.connection.username", "username");
properties.put("hibernate.connection.password", "password");
properties.put("hibernate.connection.driver_class", "org.postgresql.Driver");
properties.put("hibernate.show_sql", "true");
config.setProperties(properties);

config.addAnnotatedClass(MyMappedPojo1.class);
config.addAnnotatedClass(MyMappedPojo2.class);
..................

SchemaExport schemaExport = new SchemaExport(config);

/**Just dump the schema SQLs to the console , but not execute them ***/
schemaExport.create(true, false);
于 2012-05-03T04:35:11.083 回答