「Struts2入門」ActionContextの使い方

1.ActionContextの取得
ActionContext actionCft= ActionContext.getContext();

2.リクエストパラメータを取得する
Map<String,Object> ps = actionCt.getParameters();

3.Actionクラスを実行するインスタンスを取得
ActionInvocation cft = actionCt.getActionInvocation();

4.セッションの取得
Map<String, Object> sessdata = (Map<String, Object>) actionCft.get(ActionContext.SESSION);

Struts2

Posted by arkgame