Web/MVC패턴 게시판2012. 9. 15. 11:28


Servlet 클래스는 MVC패키지 밑 Controller 클래스입니다.

param이름은 param이고 그 위치는 E:\work\Test\WebContent\test.param입니다.

Servelt Mapping에서 url-pattern은 사용하는 패턴 *.test 입니다.


'Web > MVC패턴 게시판' 카테고리의 다른 글

MVC게시판 정리  (0) 2012.09.15
View  (0) 2012.09.15
Model  (0) 2012.09.15
Control  (0) 2012.09.15
(Model View Control) Pattern  (0) 2012.09.15
Posted by NeverTry
Web/MVC패턴 게시판2012. 9. 15. 11:20

간단하게 패턴만 보는 것이므로. 

start.jsp 에서 submit 하게 되면   테스트 프로젝트 밑 list.test(/Test/list.test) 로 가게 되고 방식은 post 방식으로 보냅니다.

만약 설정대로 갔다면 test.jsp가 보여질 것입니다.


'Web > MVC패턴 게시판' 카테고리의 다른 글

MVC게시판 정리  (0) 2012.09.15
web.xml  (0) 2012.09.15
Model  (0) 2012.09.15
Control  (0) 2012.09.15
(Model View Control) Pattern  (0) 2012.09.15
Posted by NeverTry
Web/MVC패턴 게시판2012. 9. 15. 11:16

Interface

package MVC;

import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

public interface Impl {
	public String boardImpl(HttpServletRequest req, HttpServletResponse res);
}


Class

package MVC;

import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

public class Listlmpl implements Impl {

	@Override
	public String boardImpl(HttpServletRequest req, HttpServletResponse res) {
		
		return "test.jsp";
	}

}


ListImpl을 호출을 했다면 test.jsp로 이동합니다.

'Web > MVC패턴 게시판' 카테고리의 다른 글

MVC게시판 정리  (0) 2012.09.15
web.xml  (0) 2012.09.15
View  (0) 2012.09.15
Control  (0) 2012.09.15
(Model View Control) Pattern  (0) 2012.09.15
Posted by NeverTry