1. web.xml 에서 DispatcherServlet 선언이 제대로 되어있는지 확인
2. servlet-context.xml 에 설정 확인
나 같은 경우에는, base-package가 하나의 경로만을 가리켜서 다른 디렉토리의 컴포넌트를 읽어올 수 없었다.
base-package="com.first.begin" 를 base-package="com.first..*"으로 바꾸어줘서 해결
3. url mapping이 잘 되어있는지 컨트롤러에서 확인
@RequestMapping(value = "", method = )가 잘 되어있는지 확인
4. servlet-context.xml에 <annotation-driven/> 선언 확인
'IT 차곡차곡 > Spring Framework' 카테고리의 다른 글
[Spring] 스프링 에러 - org.springframework.web.util.NestedServletException (1) | 2021.04.21 |
---|