0

次の 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 

どこが間違っているのか教えてください

ありがとう

4

1 に答える 1

0

パターンURLjsp名前が一致していないようです。それらを変更しますweb.xml

<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>/home.jsp</url-pattern>
</servlet-mapping>
于 2014-09-26T09:36:27.983 に答える