1、什么是web资源?
HttpServletRequest、HttpSession、ServletContext等原生servlet API
2、为什么访问web资源?
B\S 的应用中Controller中必然要访问web资源:向域对象中读写属性,读写cookie、读写realPath.....
3、如何访问?
①和Servlet API解耦的方式:只能访问有限的servlet API 对象,且只能访问其有限的对象方法(读取请求参数、读取域对象的属性、使session失效) >使用ActionContext >实现XxxAware接口 ②和Servlet API 耦合的方式:可以访问更多的servlet API 对象,且可以访问其原生的方法 >使用ServletActionContext >实现ServletXxxAware接口
ActionContext是Action执行的上下文,在ActionContext中保存了Action执行所需要的所有对象,包括Parameters、request、session、aplication等
时间: 2024-10-10 09:13:04