「Struts2入門」ActionContextクラスの使い方

2019年3月20日

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

2.リクエストパラメータを取得
Map<String,Object> reqparameter = ActionContext.getContext().getParameters();

3.Actionを実行するインスタンスを取得
ActionInvocation runInstancer = ActionContext.getContext().getActionInvocation();

4.valueStackを取得
ValueStack valueStack = ActionContext.getContext().getValueStack();

Java

Posted by arkgame