web.xml 서블릿리스너, 서블릿, 서블릿매핑, 서블릿필터, 서블릿필터매핑 등이 web.xml 에 정의되어 있다. 서블릿매핑 : URL 로 들어오는 이름에 따른 정의를 하고 이에 따라 실행될 서블릿을 지정한다. HttpServiceStartpoint gpsb.service.http.HttpServiceStartpoint 1 HttpServiceStartpoint /service/* 이 예제에서 보듯이 /service/ 이라는 URL 로 들어오는 모든 요청은 gpsb.service.http.HttpServiceStartpoint 라는 서블릿이 받게 된다. 서블릿 리스너와 필터에 대한 설정은 아래와 같다. 프로젝트에 따라서 서로 다르겠지만~~ gbsb.service.http.HttpServiceStartp..