java—为什么从jsp检索servlet的init参数时会得到null?

7d7tgy0s  于 2021-07-06  发布在  Java
关注(0)|答案(0)|浏览(216)

我有dd(web.xml文件)和非常简单的代码:

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://xmlns.jcp.org/xml/ns/javaee" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_4_0.xsd" id="WebApp_ID" version="4.0">
  <display-name>TestProject</display-name>
  <welcome-file-list>
    <welcome-file>index.html</welcome-file>
    <welcome-file>index.htm</welcome-file>
    <welcome-file>index.jsp</welcome-file>
    <welcome-file>default.html</welcome-file>
    <welcome-file>default.htm</welcome-file>
    <welcome-file>default.jsp</welcome-file>
  </welcome-file-list>

  <servlet>
  <servlet-name>test</servlet-name>
  <jsp-file>/result.jsp</jsp-file>

  <init-param>
  <param-name>email</param-name>
  <param-value>example@gmail.com</param-value>
  </init-param>
  </servlet>

  <context-param>
  <param-name>name</param-name>
  <param-value>Max</param-value>
  </context-param>

</web-app>

注意,我有两个参数(一个在应用程序中,另一个在配置范围中)。当我尝试使用以下命令将它们放入result.jsp中时:

<html><body>
Name is: <%=application.getInitParameter("name") %>
<br>
Email is: <%=config.getInitParameter("email") %>
</body></html>

,我得到以下输出:

Name is: Max 
Email is: null

我的问题很简单:“email”参数怎么会为空?我的jsp文件不应该“看到”我如何配置它并返回“example.gmail”吗?

暂无答案!

目前还没有任何答案,快来回答吧!

相关问题