[Spring] No mapping found for HTTP request with URI

2021. 1. 15. 13:47

1. web.xml 에서 DispatcherServlet 선언이 제대로 되어있는지 확인

<servlet-mapping> <servlet-name>appServlet</servlet-name> <url-pattern>/*</url-pattern> </servlet-mapping>

url-pattern 항목에 / 로 되어있는지 확인 → /* 변경

 

2. servlet-context.xml 에 설정 확인

component:scan 확인

 

3. url mapping이 잘 되어있는지 컨트롤러에서 확인

 

 

4. servlet-context.xml에 <mvc:annotation-driven /> 선언 확인

 

5. 오타 확인

@RequestMapping( value , method ) 오타가 있는지 없는지 확인하기

 

6. 서버 클린, 프로젝트 클린 후 서버 재시작

 

필자경우 6번으로 해결..

BELATED ARTICLES

more