package tutorial;
import com.opensymphony.xwork2.ActionSupport;
public class HelloWorld extends ActionSupport {
  private String name;
  public String getName() {
    return name;
  }
  public void setName(String name) {
    this.name = name;
  }
  public String execute() {
    name = "Hello, " + name + "!"; 
    return SUCCESS;
  }
}

댓글

이 블로그의 인기 게시물

Axios request 사용시 self signed certificate chain Error

Docker build시에 특정 라인 캐싱 제거하기.

Centos Wget 으로 Oracle 11g R2 다운받기