Struts2 ActionContext.getContext()方法:獲取ActionContext物件

2020-07-16 10:04:56
在 Struts2 的 API 中,ActionContext 的構造方法需要傳遞一個 Map 類的上下文物件,應用這個構造方法建立 ActionContext 物件非常不方便,所以,通常情況下都是使用 ActionContext 物件提供的 getContext() 方法進行建立。

語法:

public static ActionContext getContext()

引數說明:
  • getContext() 方法是一個靜態方法,可以直接呼叫,它的返回值就是ActionContext,在開發過程中使用此方法建立ActionContext即可。

範例

本範例應用 getContext() 方法獲取 ActionContext 物件,關鍵程式碼如下:
//獲取ActionContext物件
ActionContext context = ActionContext.getContext();