如果缺少配置参数,则阻止 Java Servlet 启动

发布于 2025-01-05 22:57:02 字数 237 浏览 1 评论 0原文

我的 Java Servlet 应用程序中有许多对其功能至关重要的 设置。我想确保每个设置都存在并且它们都有一个值。

理想情况下,我能够在应用程序开始之前确保他们的存在。如果没有,请阻止应用程序在 Tomcat 中启动并列出缺少的值。

有办法实现这一点吗?

I have a number of <context-param/> and <init-param/> settings in my Java Servlet application that are crucial to its functionality. I want to ensure that each of the settings exist and that they have a value.

Ideally I'd be able to assure their presence before the application starts. If not, prevent the application from starting in Tomcat and list the values that are missing.

Is there a way to achieve this?

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

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

发布评论

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

评论(1

柠檬心 2025-01-12 22:57:02

使用 init 首次创建 servlet 时调用的方法。

public void init(ServletConfig config) {
  if(/* getServletConfig() is invalid */) { throw new RuntimeException(); }
}

Use the init method which is called when the servlet first created.

public void init(ServletConfig config) {
  if(/* getServletConfig() is invalid */) { throw new RuntimeException(); }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文