上一节要讲的访问Servlet API的例子呢?
不是说用代码操作实现三种访问Servlet API的方法吗,怎么没讲?
不是说用代码操作实现三种访问Servlet API的方法吗,怎么没讲?
2016-02-29
我这有个例子
public class BaseAction extends ActionSupport{
/**
* @Fields serialVersionUID
*/
private static final long serialVersionUID = 1L;
/**
*
* @Description: 获取Session对象
* @param 参数说明
* @return Map<String,Object> 返回类型
* @throws 异常说明
*/
protected Map<String, Object> getSession() {
ActionContext ctx = ActionContext.getContext();
return ctx.getSession();
}
/**
*
* @Description: 获取HttpServletRequest对象
* @param 参数说明
* @return HttpServletRequest 返回类型
* @throws 异常说明
*/
protected HttpServletRequest getRequest() {
return ServletActionContext.getRequest();
}
/**
*
* @Description: 获取HttpServletResponse对象
* @param 参数说明
* @return HttpServletResponse 返回类型
* @throws 异常说明
*/
protected HttpServletResponse getResponse() {
return ServletActionContext.getResponse();
}
}
举报