Struts2 Convention插件的使用(2)return视图以及jsp的关系
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
以此类推
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。