如何使用dropwizard上的guice自动连接HibernateBundle?

如何使用dropwizard上的guice自动连接HibernateBundle?,第1张

如何使用dropwizard上的guice自动连接HibernateBundle?

这就是我最终要做的事情。我从这里或邮件列表中都没有得到答案,因此我会认为这种骇人听闻方法,可能不是正确的方法,但对我有用。

在我的模块中(扩展了abstractmodule):

private final HibernateBundle<MyConfiguration> hibernateBundle =        new HibernateBundle<MyConfiguration>(MyModel.class) { @Override public DataSourceFactory getDataSourceFactory(MyConfiguration configuration) {     return configuration.getDataSourceFactory(); }        };@Providespublic SessionFactory provideSessionFactory(MyConfiguration configuration,Environment environment) {    SessionFactory sf = hibernateBundle.getSessionFactory();    if (sf == null) {        try { hibernateBundle.run(configuration, environment);        } catch (Exception e) { logger.error("Unable to run hibernatebundle");        }    }    return hibernateBundle.getSessionFactory();}

修订

public SessionFactory provideSessionFactory(MyConfiguration configuration,Environment environment) {    SessionFactory sf = hibernateBundle.getSessionFactory();    if (sf == null) {        try { hibernateBundle.run(configuration, environment); return hibernateBundle.getSessionFactory();        } catch (Exception e) { logger.error("Unable to run hibernatebundle");        }    } else {        return sf;    }}


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5007615.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-11-14
下一篇 2022-11-14

发表评论

登录后才能评论

评论列表(0条)

保存