如果缺少配置参数,则阻止 Java Servlet 启动
我的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 init 首次创建 servlet 时调用的方法。
Use the init method which is called when the servlet first created.