Application对象

application对象主要的作用就是保存信息,实现在不同页面间的参数传递。而且application是所有用户共享的,任何用户都可以访问。
其属性操作的三个方法分别是setAttribute(),getAttribute(),removeAttribute()
在Servlet中,获取application的方法,有两种
1.通过无参初始化方法,直接取得;
ServletContext application=this.getServletContext();
2.通过有参初始化方法,必须使用config对象取得。
config.getInitParameter(String name);

你可能感兴趣的:(Application对象)