在以下 Web 应用程序结构中,我试图将 init 和 context 参数从 web.xml 页面放入 jsp 页面,而不使用 servlet。
索引.html:
<html>
<head>
<meta charset="ISO-8859-1">
<title>Insert title here</title>
</head>
<body>
<form action="action" method="get">
<a href="home.jsp">clik here</a></form>
</body>
</html>
网页.xml:
<webapp>
<context-param>
<param-name>per1</param-name>
<param-value>val1</param-value>
</context-param>
<welcome-file>
index.jsp</welcome-file>
<servlet>
<servlet-name>abc</servlet-name>
<jsp-file>home.jsp</jsp-file>
<init-param>
<description>This is an init parameter example</description>
<param-name>InitParam</param-name>
<param-value>init param value</param-value>
</init-param>
</servlet>
<servlet-mapping>
<servlet-name>abc</servlet-name>
<url-pattern>action</url-pattern>
</servlet-mapping>
主页.jsp:
<html>
<body>
<%= application.getInitParameter("per1")%>
<%= config.getInitParameter("InitParam") %>
${initParam.per1)
</body>
</html>
但我无法在我的 jsp 页面中访问这些初始化和上下文参数。
null null
请让我知道我哪里出错了
谢谢