JSP详细篇——application
application对象
application对象用于保存所有应用程序中的共有数据。它在服务器启动时自动创建,在服务器停止时自动销毁。当application对象没有被销毁时,所有用户都可以共享该application对象。与session相比,application 对象的生命周期更长,类似于“全局变量”
1.访问应用程序初始化参数
application提供了对应用程序初始化参数进行访问的方法。应用程序初始化参数在web.xml文件中进行设置,web.xml文件位于Web应用所在的目录下的WEB-INF子目录中。在web.xml中通过<context-param>标记配置应用程序的初始化参数。
范例:
在web.xml中配置了MySQL数据库所需的url参数,实例如下:
<context-param>
<param-name>url</param-name>
<param-value>jdbc:mysql:127.0.0.1:3306/db_database</param-value>
</context-param>
application对象提供了两种方法访问应用程序的初始化参数。分别介绍如下:
a.getInitParameter()方法:
该方法用户返回已经命名的参数值。语法格式如下:
application.getInitParameter(String name);
使用此方法获取上面web.xml文件中的url参数的值,可使用下面的代码
application.getInitParameter(“url”);
b.getAttributeNames()方法
application.getAttributeNames()返回以定义的应用程序初始化参数名的枚举,语法格式如下:
application.getAttributeNames();
范例:
web.xml文件如下:
<?xml version="1.0" encoding="UTF-8"?>
<web-app version="3.0"
xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd">
<display-name></display-name>
<welcome-file-list>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>
<context-param>
<param-name>url</param-name>
<param-value>jdbc:mysql:127.0.0.1:3306/db_database</param-value>
</context-param>
</web-app>
result.jsp文件中取得应用程序的初始化参数。
<%@ page language="java" import="java.util.*" pageEncoding="ISO-8859-1"%>
<%@ page import="java.util.*" %>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<base href="<%=basePath%>">
<title>My JSP ‘result.jsp‘ starting page</title>
<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="expires" content="0">
<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
<meta http-equiv="description" content="This is my page">
<!--
<link rel="stylesheet" type="text/css" href="styles.css">
-->
</head>
<body>
<%
Enumeration enumeration = application.getInitParameterNames();
while(enumeration.hasMoreElements())
{
String name = (String)enumeration.nextElement();
String value = (String)application.getInitParameter(name);
out.println(name);
out.println(value);
}
%>
</body>
</html>
2.管理应用程序的环境属性
application对象管理应用程序环境属性的方法如下:
getAttributeNames():获取所有application对象使用的属性名
getAttribute(String name):从application对象中获取指定的对象名的值
setAttribute(String key,Object obj):设置application对象的属性的值
removeAttribute(String name):从application对象中去掉指定的名称的属性
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。