在WAS上下文中,应用程序反弹和jvm反弹有什么区别

发布于 2024-12-06 21:03:31 字数 79 浏览 2 评论 0原文

在 WAS 上下文中,应用程序弹跳和 jvm 弹跳之间有什么区别。

如果我们只想在服务器启动时重新加载数据,我们应该选择哪一个。

In context of WAS, what is the difference between application bounce and jvm bounce.

In case we only want to reload the data at server startup , whch one should we go for.

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

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

发布评论

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

评论(1

海拔太高太耀眼 2024-12-13 21:03:31

当服务器运行时,同一应用程序可以多次重新启动。如果您只想在每次服务器启动时加载数据一次,那么我建议将一个类放置在与服务器类加载器关联的共享库中。这将使所有应用程序都可以访问它,并且静态变量将保留其内容,直到服务器重新启动。当然,这也意味着您无法在不重新启动服务器的情况下更新这些类。

The same application can be restarted multiple times while a server is running. If you only want to load data once per server start, then I would recommend placing a class in a shared library associated with a server class loader. This will make it accessible to all applications, and the static variables will retain their contents until the server is restarted. Of course, this also means you cannot update these classes without restarting the server.

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