3

我正在尝试访问initParameter在我的 jsp 中访问。

当我尝试访问initparameter它时,它显示为空。

我的jsp页面是:

<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"   
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Insert title here</title>
</head>
<body>
<%   
String user=config.getInitParameter("User");  
out.print("Hello "+user);  
%>  
</body>
</html>

web.xml

<?xml version="1.0" encoding="UTF-8"?>
<web-app id="WebApp_ID" version="2.4" xmlns="http://java.sun.com/xml/ns/j2ee"     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
<display-name>
Learning</display-name>
<welcome-file-list>
    <welcome-file>index.html</welcome-file>
</welcome-file-list>
<servlet>
<servlet-name>config</servlet-name>
<jsp-file>/config.jsp</jsp-file>
<init-param>
  <param-name>User</param-name>
  <param-value>Dummy</param-value>
</init-param>
</servlet>
<servlet-mapping>
  <servlet-name>config</servlet-name>
<url-pattern>/config.jsp</url-pattern>
</servlet-mapping>
</web-app>

访问 init 参数时我得到空值。请建议。

4

2 回答 2

3

如果您的 JSP 文件名是config.jsp它应该可以工作。

当您编写以下内容时,您可以获得空值的一种情况:

<% String user=config.getInitParameter("User"); 
out.print("Hello "+user);%>

在不是config.jsp的 JSP 中。

因此,请交叉检查您的 JSP 名称,它应该直接位于您项目中的 WebContent 下。

于 2015-03-18T19:18:33.880 回答
0

web.xml 中提到的 jsp 文件的名称应与 WebContent 示例中的实际 jsp 文件名匹配假设您在 web.xml 中有 /intipage.jsp 您需要在 WebContent 中插入 initpage.jsp

于 2018-09-08T16:51:05.207 回答