application
String getContextPath() 虚拟路径
String getRealPath() 绝对路径
四种范围对象
pageContext jsp页面对象 page对象 当前页面有效,跳转无效
request
session
application 全局对象
以上4个对象共有的方法
setAttribute(String name,Object obj) 设置属性值(新增,修改) 如果对象不存在,则新增,存在,则修改
getAttribute(String name) //
removeAttribute(String name) 根据属性名,删除对象