Error code 모음/5. JAVA, Spring errors

[Spring error] : No mapping found for HTTP request with URI 에러

쟈누이 2020. 7. 24. 10:09
반응형

나의 경우에는 처음에 스프링 프레임 워크를 켜고,

톰캣 서버가 파일들을 읽어들이면서 누락된 것 때문에 발생이 되었었다.

 

그래서 login.do 가 되지 않았었고, 

그것을 톰캣이 읽지 못해서 에러가 발생한 것이었는데..

 

운이 좋게도 컴퓨터를 다시 껐다 켜니 에러는 사라져 있었는데...

우선, 이런 에러를 언제 다시 만날지 모르기에 

 

우선 간단한 대처 방법을 아래의 링크를 통해 기록해 두어야 겠다.

 

*** 20. 09. 22 ***

비슷한 에러가 발생했었다..

처음에 사수분이 주셨던 파일에 설정이 제한되어 있었던 mapping pattern 때문이었는데..

" / " 를 통해서 경로가 많이 있을 때에도 view controller 에서 이를 인식할 수 있게 

만든 것이 주요 했었다...

 

처음에는 *.do, *.json 이기 때문에 경로가 다수로 껴있을 경우

되지 않는 문제가 발생했다. 그래서 servlet, 과 web.xml 에 

설정이 다 되어 있어도 인식을 하지 못하는 것이었다.

위 사례를 참고로해서 추후 경로 인식도 따져가면서 

에러를 수정해야 겠다.

참고 링크

https://stufeel.tistory.com/8

 

No mapping found for HTTP request with URI 에러 원인

1. web.xml 에서 DispatcherServlet 선언이 제대로 되어있는지 확인 appServlet org.springframework.web.servlet.DispatcherServlet contextConfigLocation classpath:/META-INF/spring/appServlet/servlet-conte..

stufeel.tistory.com

https://stackoverflow.com/questions/18683847/no-mapping-found-for-http-request-with-uri-in-dispatcherservlet-with-name

 

No mapping found for HTTP request with URI.... in DispatcherServlet with name

I checked out nearly every relevant article on stackoverflow already, but I just cant fix my problem. Here is the code: web.xml: Spring3MVC <wel...< p=""> </wel...<>

stackoverflow.com

https://passionha.tistory.com/159

 

No mapping found for HTTP request with URI in DispatcherServlet with name~ 에러

No mapping found for HTTP request with URI in DispatcherServlet with name~ web.xml에 servlet mapping의 주소가 잘못 지정됐거나, 요청하는 URL이 Controller의 @RequestMapping의 URL에 없거나..

passionha.tistory.com

 

반응형