Spring MVC classes not found
프로그래밍/JAVA 2012. 8. 7. 09:46 |Spring MVC classes not found
Eclipse Juno 에 Spring MVC 을 활성화 하는 중이다. 분명히 Templates를 통해서 프로젝트를 생성했는데 아래와 같은 Problems 이 발생하는 것이 아닌가!?
문제점
Description Resource Path Location Type
Class 'org.springframework.web.servlet.view.InternalResourceViewResolver' not found [config set: spring-mvc/web-context] servlet-context.xml /spring-mvc/src/main/webapp/WEB-INF/spring/appServlet line 19 Spring Beans Problem
해결방안
Spring Project Nature 를 비활성화 하고 다시 활성화 하였더니 해당 에러가 사라지는 것이었다. 동시에 JSTL을 못찾던 문제도 함께!
Package Explorer -> Project 메뉴(우클릭) -> Spring tools -> spring project nature
혹시나 하는 의문에 구글링을 해보았지만 명쾌한 답은 찾지못하고 동일한 상황을 겪은 stackOverflow 글을 발견했다.
http://stackoverflow.com/questions/9177902/spring-mvc-classes-not-found
감사합니다 :)