콘솔에서 위 에러가 발생되는 경우 해결 방법
1. 클래스에 @Controller 어노테이션이 없는 경우
2. Mappng 어노테이션 사용시 URL이 다른경우
3. servlet-context.xml 파일에 패키지 설정이 잘 못되어 있는 경우
<context:component-scan base-package="seo.controller" ></ context:component-scan>
위와 같은 태그는 사용 불가하고 아래와 같은 방법을 사용한다.
<context:component-scan base-package="" />