11

我按照dropwizard和hibernate的教程没有问题。现在我的实体中有重要的注释,我希望 hibernate 为我生成表,以及类似的东西。那么,我怎样才能改变hibernate的配置呢?我可以给它一个hibernate.cfg.xml吗?如果可以,我是否必须重新建立连接?

我找到了这个PR,但它似乎还没有公开发布(我的罐子里没有 hibernateBundle.configure )

但也许我正在寻找错误的东西。到目前为止,我只是想设置 hibernate.hbm2dll.auto。毕竟,可能还有其他方法可以在 Dropwizard 中启用休眠表生成……那么,有什么帮助吗?

谢谢你。


编辑:我从另一个角度解决了这个问题,明确地创建模式而不是使用 hbm2ddl.auto。请参阅建议的答案。

4

1 回答 1

24

编辑:问题解决了!在 YAML 配置中执行此操作目前有效:(Dropwizard 0.7.1)

database:
    properties:
        hibernate.dialect: org.hibernate.dialect.MySQLDialect
        hibernate.hbm2ddl.auto: create

(来自这个答案


老答案:

这是我目前正在使用的:一个调用hibernate的SchemaExport将架构导出到SQL文件或修改数据库的类。我只是在更改我的实体之后,在运行应用程序之前运行它。

public class HibernateSchemaGenerator {

    public static void main(String[] args) {
        Configuration config = new Configuration();

        Properties properties = new Properties();

        properties.put("hibernate.dialect", "org.hibernate.dialect.MySQLDialect");
        properties.put("hibernate.connection.url", "jdbc:mysql://localhost:3306/db"); 
        properties.put("hibernate.connection.username", "user");
        properties.put("hibernate.connection.password", "password");
        properties.put("hibernate.connection.driver_class", "com.mysql.jdbc.Driver");
        properties.put("hibernate.show_sql", "true");
        config.setProperties(properties);

        config.addAnnotatedClass(MyClass.class);

        SchemaExport schemaExport = new SchemaExport(config);

        schemaExport.setOutputFile("schema.sql");
        schemaExport.create(true, true);

    }

}

我以前不知道休眠工具。所以这个代码示例可以在服务初始化中使用,就像hbm2ddl.auto = create.

我目前只是通过运行类(来自 eclipse 或 maven)来生成和查看输出 SQL 来使用它。

于 2013-06-18T21:42:50.060 回答