在哪里创建 HibernateUtil 实例 Java Servlet
我刚刚使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以在
ServletContextListener
并将其在
web.xml
中注册为You can initialize it in
ServletContextListener
and register it inweb.xml
as