「Struts2入門」@Resultsで複数の遷移先を指定するサンプル

2020年9月25日

説明

@Result(name="戻り値文字列", value="遷移先", type=クラス)

type:chain
アノテーション:ActionChainResult.class

使用例1

@Results( {
  @Result(name = "success", value = "usershow", type = ActionChainResult.class),
  @Result(name = "input", value = "userInput.jsp")
})

 

使用例2

@Action(value="USEREGACTION",
results ={ 
 @Result(name="success",location="regsuccess.jsp"),
 @Result(name="input",location="userreg.jsp"
)
})

 

Struts2

Posted by arkgame