标签:
protected ServletContext getServletContext() { return ServletActionContext.getServletContext();
}
protected HttpSession getSession(boolean paramBoolean) { return ServletActionContext.getRequest().getSession(paramBoolean);
}
protected HttpSession getSession() { return ServletActionContext.getRequest().getSession();
}
protected HttpServletRequest getRequest() { return ServletActionContext.getRequest();
}
protected HttpServletResponse getResponse() { return ServletActionContext.getResponse();
}
HttpServletRequest request = ServletActionContext.getRequest();
标签:
原文地址:http://www.cnblogs.com/outlooking/p/4343407.html