在web.xml中添加
<context-param>
<param-name>secret</param-name>
<param-value>marvin</param-value>
</context-param>
在servlet中使用
String admin_secret = this.getServletContext().getInitParameter("secret");
之前所所说的application.getInitParameter都无法用了

本文详细介绍了如何在web.xml文件中添加上下文参数,并在Servlet中获取该参数的方法。
266

被折叠的 条评论
为什么被折叠?



