Spring MVC가 404로 응답하여 "No mapping found for HTTP request with URI [...in Dispatcher Servlet]?"라고 보고하는 이유는 무엇입니까? Tomcat에 전개된 Spring MVC 어플리케이션을 쓰고 있습니다.다음의 최소, 완전, 검증 가능한 예를 참조해 주세요. public class Application extends AbstractAnnotationConfigDispatcherServletInitializer { protected Class[] getRootConfigClasses() { return new Class[] { }; } protected Class[] getServletConfigClasses() { return new C..