在WAS上下文中,应用程序反弹和jvm反弹有什么区别
在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当服务器运行时,同一应用程序可以多次重新启动。如果您只想在每次服务器启动时加载数据一次,那么我建议将一个类放置在与服务器类加载器关联的共享库中。这将使所有应用程序都可以访问它,并且静态变量将保留其内容,直到服务器重新启动。当然,这也意味着您无法在不重新启动服务器的情况下更新这些类。
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.