JBoss 工厂注入和方法调用

发布于 2024-12-05 07:34:28 字数 358 浏览 2 评论 0原文

我在 org.hibernate.SessionFactory 类型的名为“sessionFactory”的私有字段上使用 @JndiInject(jndiName="xxx") - 这非常有用!

我如何注入一个具体的org.hibernate.Session(长寿命)?

@JndiInject(jndiName="xxx")
private SessionFactory sessionFactory;

private Session hibernateSession session = sessionFactory.openSession();

将创建一个 NPE。

i use @JndiInject(jndiName="xxx") on an private Field named "sessionFactory" of type org.hibernate.SessionFactory - this works great!

How do i inject an concrete org.hibernate.Session (long-lifed)?

@JndiInject(jndiName="xxx")
private SessionFactory sessionFactory;

private Session hibernateSession session = sessionFactory.openSession();

will create an NPE.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

半城柳色半声笛 2024-12-12 07:34:28

您可以尝试 @PostConstruct 注释来执行任何注入所有依赖项后的逻辑类型:

@PostConstruct
private void initSession() {
  session = sessionFactory.openSession();
}

You can try @PostConstruct annotation to execute any kind of logic after all dependencies are injected:

@PostConstruct
private void initSession() {
  session = sessionFactory.openSession();
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文