悠索

少小离家老大回,乡音无改鬓毛衰。

« struts2 struts.xmlMyEclipse 学习 »

HelloAction.java

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;
  }
 }

}
 

  • 相关文章:

发表评论:

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

日历

最新评论及回复

最近发表

Copyright (C) 2008-2012 0451sky.com Inc.,All Rights Reserved.