Servlet 클래스는 MVC패키지 밑 Controller 클래스입니다.
param이름은 param이고 그 위치는 E:\work\Test\WebContent\test.param입니다.
Servelt Mapping에서 url-pattern은 사용하는 패턴 *.test 입니다.
Servlet 클래스는 MVC패키지 밑 Controller 클래스입니다.
param이름은 param이고 그 위치는 E:\work\Test\WebContent\test.param입니다.
Servelt Mapping에서 url-pattern은 사용하는 패턴 *.test 입니다.
간단하게 패턴만 보는 것이므로.
start.jsp 에서 submit 하게 되면 테스트 프로젝트 밑 list.test(/Test/list.test) 로 가게 되고 방식은 post 방식으로 보냅니다.
만약 설정대로 갔다면 test.jsp가 보여질 것입니다.
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로 이동합니다.