次の Web アプリ構造では、サーブレットを使用せずに、init およびコンテキスト パラメーターを web.xml ページから jsp ページに配置しようとしています。
index.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>
web.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 ページでこれらの init および context パラメータにアクセスできません。
null null
どこが間違っているのか教えてください
ありがとう