config对象代表当前jsp配置信息,但jsp页面通常无须配置,因此也就不存在配置信息.
对比application对象,application对象对整个应用程序都有用,范围比较大,但是config比较小,如果希望jsp页面可以获得为自己本页面设置的配置信息,则必须通过为该jsp配置的路径来访问该页面,因为只有这样访问jsp页面才会让配置参数起作用.
config对象是ServletConfig的实例,该接口用于获取配置参数的方法是getInitParameter(String paraName).
案例:通过config获取jsp配置参数
2018-3-16.1.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>Insert title here</title>
</head>
<body>
<%=config.getInitParameter("name") %>
</body>
</html>
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>2108-3-16</display-name>
<welcome-file-list>
<welcome-file>index.html</welcome-file>
<welcome-file>index.htm</welcome-file>
<welcome-file>index.jsp</welcome-file>
<welcome-file>default.html</welcome-file>
<welcome-file>default.htm</welcome-file>
<welcome-file>default.jsp</welcome-file>
</welcome-file-list>
<servlet>
<servlet-name>config</servlet-name><!-- 指定Servlet名称 -->
<jsp-file>/2018-3-16.1.jsp</jsp-file><!-- 指定将哪个页面配置成Servlet -->
<init-param>
<param-name>name</param-name><!-- 参数名称 -->
<param-value>liming</param-value><!-- 参数值 -->
</init-param>
</servlet>
<servlet-mapping>
<!-- 将指定config Servlet配置(映射)到/config路径 -->
<servlet-name>config</servlet-name>
<url-pattern>/config</url-pattern><!-- 可以通过/config来访问jsp页面 -->
</servlet-mapping>
</web-app>
如下图:
1.通过映射后的/config访问
2.通过jsp名称来访问,就会获取不到配置信息
所以jsp页面获取配置信息必须要为该jsp配置路径.