오류 내용
dispatcher-servlet.xml 설정 중 아래와 같은 오류 발생

mvc 네임스페이스를 등록하니 URI가 등록되지 않았다고 함

또한 org.springframework.web.servlet 패키지도 찾을 수 없음
원인

원본 글: https://stackoverflow.com/questions/28385695/org-springframework-web-servlet-not-found-in-maven
org.springframework.web.servlet not found in maven
I am trying to download the org.springframework.web.servlet using maven dependency but maven could not download it.i want to know is this dependency is there in maven or not <dependency> ...
stackoverflow.com
org.springframework.web.servlet은 spring-webmvc 모듈에 포함되어 있으므로 아래와 같이 dependency를 추가해야 함
문제 해결
pom.xml에 다음과 같이 dependency 추가
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-webmvc</artifactId>
<version>5.3.13</version>
</dependency>
정상 작동 확인됨
