Struts 2 Conventionプラグインの使用(2)returnビューおよびjspの関係
1941 ワード
1 package com.hyy.action;
2
3 import com.opensymphony.xwork2.ActionSupport;
4
5 public class HelloWorld extends ActionSupport{
6 private String message;
7 public String execute() {
8 message = "hyy";
9 return INPUT;
10 }
11
12 public String getMessage() {
13 return message;
14 }
15 }
9行目
return INPUTは、/WEB-INF/content/hello-world-inputを探します.jsp
return SUCCESSは、/WEB-INF/content/hello-world-successを探します.jsp
return"fail"は、/WEB-INF/content/hello-world-failを探します.jsp
このように推す.