JBoss Seam:如何在视图中打开 jpa/hibernate 会话

发布于 2024-11-27 14:56:13 字数 313 浏览 1 评论 0原文

春天

但是 JBoss Seam 怎么样,我需要关于我正在开发的应用程序的建议。

如果您需要任何特定版本信息,它们是

  • Seam 2.2
  • JSF 1.2
  • JPA 1 和 Hibernate 作为持久性提供者

There is a similar question for Spring.

But what about JBoss Seam, I need a suggestion regarding the application I am developing.

If you need any specific version information, they are

  • Seam 2.2
  • JSF 1.2
  • JPA 1 and Hibernate as persistence provider

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

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

发布评论

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

评论(1

撩起发的微风 2024-12-04 14:56:13

查看与持久化上下文相关的Seam 文档。

http://docs.jboss.org/seam/2.2.0.GA/reference/en-US/html/persistence.html#persistence.seam-management-persistence-contexts

本质上,您使用seam 注册持久化上下文并将EntityManager 注入到您的bean 中。您可以通过在@Begin注释(@Begin和@End控制对话)中设置flushMode将上下文与对话关联起来,以保持会话在多个请求中打开。

Check out the seam documentation related to persistence contexts.

http://docs.jboss.org/seam/2.2.0.GA/reference/en-US/html/persistence.html#persistence.seam-managed-persistence-contexts

Essentially, you register the persistence context with seam and inject the EntityManager into your bean. You can associate the context with a conversation to keep the session open across multiple requests by setting the flushMode in the @Begin annotation (@Begin and @End control conversations).

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