JSP - Servlet Mapping
2022. 12. 30. 11:14
JSP
Servlet Mapping Servlet Mapping이란 특정 servlet을 요청할 때, 전체 경로를 url에 써주면, 너무 복잡하고 보안에도 취약하기 때문에, 간단하게 경로를 표현해주는 것이다. servlet 매핑 방법은 두 가지가 있다. 1. xml 이용 2. annotaion 이용 xml을 이용하여 servlet mapping xml을 이용하여, servlet mapping을 해주기 위해서는 web.xml파일에서 servlet mapping을 해주어야한다. 은 이 servlet의 별칭이기 때문에 임의로 바꿔주어도 된다. 는 이 servlet의 저장위치이다. action org.springframework.web.servlet.DispatcherServlet contextConfigLocatio..