在Struts2中,ActionContext是一個用于存儲Action的上下文信息的類。它是一個線程安全的類,可以在任何地方訪問。
使用ActionContext可以獲取和設置Action的一些相關信息,比如請求參數、會話信息、響應信息等。
下面是使用ActionContext的一些常見操作:
ActionContext context = ActionContext.getContext();
// 獲取請求參數
Map<String, Object> parameters = context.getParameters();
// 獲取單個請求參數的值
String parameterValue = context.getParameters().get("paramName");
// 設置請求參數的值
context.getParameters().put("paramName", "paramValue");
// 獲取會話信息
Map<String, Object> session = context.getSession();
// 獲取單個會話屬性的值
Object attributeValue = context.getSession().get("attributeName");
// 設置會話屬性的值
context.getSession().put("attributeName", attributeValue);
// 獲取上下文信息
Map<String, Object> contextMap = context.getContextMap();
// 獲取單個上下文屬性的值
Object attributeValue = context.getContextMap().get("attributeName");
// 設置上下文屬性的值
context.getContextMap().put("attributeName", attributeValue);
// 獲取響應信息
HttpServletResponse response = (HttpServletResponse) context.get(StrutsStatics.HTTP_RESPONSE);
// 設置響應頭
response.setHeader("headerName", "headerValue");
// 設置響應狀態碼
response.setStatus(HttpServletResponse.SC_OK);
這些只是ActionContext的一些常見操作,還有其他很多方法可以使用。需要根據具體的需求來使用。