MVC Pattern(1) - 첫 화면 띄우기
#1 MVC 구조 #2 ActionForward 클래스를 vo패키지에 추가한다. package vo; public class ActionForward { //1번 private String path; // 경로정보 private boolean redirect; // true:리다이렉트, false:디스패치 public ActionForward() { } public ActionForward(String path, boolean redirect) { super(); this.path = path; this.redirect = redirect; } public String getPath() { return path; } public void setPath(String path) { this.path = pa..
2019. 8. 19. 22:50