在哪里创建 HibernateUtil 实例 Java Servlet

发布于 2024-12-11 14:41:46 字数 180 浏览 0 评论 0原文

我刚刚使用 Hibernate 创建了我的第一个 Java EE servlet。 我不知道的是如何初始化 HibernateUtil 类以便 当第一个请求到来时,它已经加载了 hibernate 配置,因此不必等待它初始化。

目前,它在第一个请求时进行初始化,然后在所有后续请求中它只重用单例。由于这个原因,第一个请求有点慢。

I've just created my first Java EE servlet using Hibernate.
What I don't know is how to initialize the HibernateUtil class so that
when the first request comes in, it has already loaded the hibernate configuration, and therefore does not have to wait for it to initialize.

Currently it initializes on the first request, and then on all subsequent requests it just reuses the singleton. First request is a bit slow due to this.

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

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

发布评论

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

评论(1

夕色琉璃 2024-12-18 14:41:46

您可以在 ServletContextListener并将其在 web.xml 中注册为

<listener>
     <listener-class>...</listener-class>
</listener>

You can initialize it in ServletContextListener and register it in web.xml as

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