我已在web.xml
中说明了我的init参数,并在init.jsp
中访问了该参数,我的输出为null
。我正在使用Tomcat-8
我的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_3_1.xsd" id="WebApp_ID" version="3.1">
<display-name>SecondWebProject</display-name>
<welcome-file-list>
<welcome-file>index.html</welcome-file>
</welcome-file-list>
<servlet>
<servlet-name>InitJsp</servlet-name>
<jsp-file>/init.jsp</jsp-file>
<init-param>
<param-name>default_username</param-name>
<param-value>default user</param-value>
</init-param>
</servlet>
<servlet-mapping>
<servlet-name>InitJsp</servlet-name>
<url-pattern>/init.jsp</url-pattern>
</servlet-mapping>
</web-app>
我的init.jsp是:
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<!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=UTF-8">
<title>Init jsp</title>
</head>
<body>
Default username is: <%= config.getInitParameter("default_username") %>
<br>
Default username is: <%=
getServletConfig().getInitParameter("default_username") %>
</body>
</html>
Eclipse中的文件结构如下:
我无法找到我做错的地方。来自您身边的任何帮助都很有价值。
答案 0 :(得分:0)
请确保将jsp放在适当的位置/路径。
我测试了你的代码(用tomcat7)&amp;它运行正常,只有我把我的jsp放在正确的路径, web.xml
检查快照以供参考,如果将jsp直接放在 WebContent / init.jsp下,它将正常运行,否则结果为null(检查快照中的url,结果为null)
检查目录结构