RSS订阅优然探索
你的位置:首页 » JAVA » 正文

HelloAction.java

选择字号: 超大 标准 发布时间:2009-7-6 18:59:39 | 作者:admin | 0个评论 | 人浏览

package org.lxh.struts2.demo;

import com.opensymphony.xwork2.ActionSupport;

public class HelloAction extends ActionSupport {

 private String msg;

 public String getMsg() {
  return msg;
 }

 public void setMsg(String msg) {
  System.out.println("**************************");
  this.msg = msg;
 }

 public String execute() throws Exception {
  if ("mldnlxh".equalsIgnoreCase(this.msg)) {
   return ActionSupport.SUCCESS;
  } else {
   return ActionSupport.ERROR;
  }
 }

}
 

标签:

猜你喜欢

发表评论

必填

选填

选填

必填,不填不让过哦,嘻嘻。

记住我,下次回复时不用重新输入个人信息

◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。