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