Spring Boot 404 발생 원인 정리 (React는 있는데 서버가 404인 경우)
상황 요약React 페이지는 정상적으로 존재하고 화면도 뜸React에서 API 요청(fetch / axios)을 보냄서버 로그에서 404 NOT_FOUND 발생서버 로그 핵심DispatcherServlet : GET "/admin/api/fare-result/list?...” SimpleUrlHandlerMapping : Mapped to ResourceHttpRequestHandler [classpath [static/]] ResourceHttpRequestHandler : Resource not found DispatcherServlet : Completed 404 NOT_FOUND Mapped to BasicErrorController#error이 로그가 의미하는 것1️⃣ 요청은 서버까지 정상 도달..
2026.01.28