Servlet 설정 아래 Context Root (Web Project 생성시 프로젝트명)가 URL의 root가 됩니다. 예) http://localhost:8080/Test7 Root 이름 없이 http://localhost:8080/ 인 URL로 설정하기 위해서는 아래 path 를 '/' 로 변경하면 됩니다. Servlet 추가 web.xml에서 servlet mapping 설정 servlet-name 끼리 매칭이 되어야 합니다. servlet-class 는 코드에서 실행되는 클래스이름(package명.javaClass명) url-pattern은 url 주소이름 (ex. http://localhost:8080/TestServlet7) https://kakaroo.tistory.com/8 JSP URL..