#index
- SAStrutsは、Webアプリケーションのルートにアクセスすると、ルートパッケージ.action.IndexActionというクラスがあれば、自動的にそのアクションに遷移します。
IndexAction.java
package tutorial.action;
import org.seasar.struts.annotation.Execute;
public class IndexAction {
@Execute(validator = false)
public String index() {
return "index.jsp";
}
}
-
アクションに遷移した後、@Executeのついた実行メソッドが呼び出されます。
-
メソッドの戻り値は遷移先になります。IndexAction#index()の場合は、index.jspに遷移します。
#参照