package org.action; import java.util.Map; import javax.servlet.http.HttpServletRequest; import org.apache.struts2.interceptor.ApplicationAware; import org.apache.struts2.interceptor.RequestAware; import org.apache.struts2.interceptor.ServletRequestAware; import org.apache.struts2.interceptor.SessionAware; /** * 基类Action */ public class BasicStrutsAction implements SessionAware, RequestAware, ServletRequestAware, ApplicationAware { // 为了让子类也能使用,所以访问控制符为protected protected Map<String, Object> session; protected Map<String, Object> request; protected Map<String, Object> application; protected HttpServletRequest httpRequest; public void setSession(Map<String, Object> session) { this.session = session; } public void setRequest(Map<String, Object> request) { this.request = request; } public void setServletRequest(HttpServletRequest httpRequest) { this.httpRequest = httpRequest; } public void setApplication(Map<String, Object> application) { this.application = application; } }
最近下载更多
gshnbb LV9
2023年4月9日
ssd1224 LV1
2021年5月19日
1669613755 LV2
2020年9月12日
chengxvyang LV7
2020年9月4日
qq2528732622 LV8
2020年6月15日
410286328 LV2
2020年6月11日
y6622576 LV9
2020年6月7日
bcr1234 LV9
2020年5月29日
dadakjdsd LV1
2020年5月10日
LIcquent LV1
2020年4月25日