「struts2入門」遷移先を設定する方法

2018年7月3日

1.デフォルト指定
@Result(value="userInfo.jsp")
@Result(name="success", value="userInfo.jsp", type=ServletDispatcherResult.class)

2.複数の遷移先を指定
@Results({
@Result(name = “CFT1200", location = “CFT1200.jsp" , type="dispatcher"), @Result(name = “CFT1210A", location = “/CFT1210″ , type="redirect"),
@Result(name = “CFT3200B", location = “/CFT3200″ , type="redirect"),
})

Java

Posted by arkgame