[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번으로 해결..
'Web > spring' 카테고리의 다른 글
[Spring/Web Socket] 웹 소켓 세션을 이용한 웹상에서 통신 (1) (1) | 2021.03.19 |
---|---|
[sqlMap] There is no statement named / sqlMap.xml 오류 (0) | 2021.03.02 |
[Spring/JAVA] 사용자 IP, 접속자IP, 클라이언트IP 주소 가져오기 (0) | 2021.01.13 |
[Spring] 자바 파일 적용 안될 때, 소스 파일 수정 안될 때 (0) | 2021.01.13 |
[Spring] Bean Creation Exception (0) | 2021.01.12 |