黑白差异和
DD 元素
和
都可以通过 Servlet 中的 getInitParameter()
方法检索代码。
现在的问题是,它如何区分
和
?
DD elements <context-param>
and <init-param>
both can be retrieved by the getInitParameter()
method, in the servlet code.
Now the question is, how does it differentiate <context-param>
and <init-param>
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Servlet 初始化参数仅适用于单个 Servlet。该 servlet 之外的任何内容都无法访问它。它在部署描述符的
标签内声明,而上下文初始化参数则用于整个 Web 应用程序。该 Web 应用程序中的任何 Servlet 或 JSP 都可以访问上下文初始化参数。 上下文参数直接在
标记内的标记
中声明。访问上下文初始化参数的方法是,
而访问servlet初始化参数的方法是
Servlet init parameters are for a single servlet only. Nothing outside that servlet can access that. It is declared inside the
<servlet>
tag of Deployment Descriptor, on the other hand context init parameter is for the entire web application. Any servlet or JSP in that web application can access context init parameter. Context parameters are declared in a tag<context-param>
directly inside the<web-app>
tag.The methods for accessing context init parameter is
whereas the method for accessing servlet init parameter is
正如 Adeel Ansari 所解释的,这里,这取决于您调用方法
getInitParameter() 在 servlet 代码中。
所有 servlet 都继承自 GenericServlet,因此都是 GenericServlet 的实例。
。
DD 元素
可以通过以下方式检索:。
DD 元素
都可以通过以下方式检索:另请注意,由于
GenericServlet
类实现ServletConfig
接口,因此您的 servlet 类也是ServletConfig(隐含this = this.getServletConfig()
)。因此,您还可以直接通过以下方式获取 DD 元素。
您可以通过在两个具有不同值的 DD 元素中使用相同的参数名称来尝试此操作,然后在 servlet 中打印它。
As explained by Adeel Ansari, here, it depends on what object are you invoking the method
getInitParameter()
in the servlet code.All servlets extends from and hence are instance of
GenericServlet
..
DD elements
<context-param>
can be retrieved by:.
DD elements
<init-param>
both can be retrieved by:Also note that since
GenericServlet
class implementsServletConfig
interface, your servlet class is also ServletConfig (impliesthis = this.getServletConfig()
). Hence you can also get DD elements<init-param>
directly by:.
You can try this by having same param-name in both DD elements with different values and then print it in your servlet.