
[java.io.FileNotFoundException] Could not open ServletContext [/WEB-INF/action-servlet.xml] [java.io.FileNotFoundException] Could not open ServletContext resource경고문이 나올 때 해결방법 증상 Spring SimpleUrlController 이용해서 jsp 요청하다가 증상이 나타남. HTTP Status 500 - Internal Server Error 에러를 뿜으면서 에러가 났다. 원인 컨테이너에서 action-servlet.xml 을 찾지 못해서 에러가 났다. 해결 web.xml에서 경로를 지정해주면 된다. action org.springframework.web.Dispat..

missing required source folder eclipse에서 프로젝트를 불러오는 과정에서 Project 'xxxx' is missing required source folder: 'src/main/resources' Build path Build Path Problem 이라는 문제가 생겼다. 원인 알림에서도 알려주듯이 Build Path 문제이며 프로젝트를 불러올 때 새로운 환경에서 경로가 맞지않아 뜨는 문제이다. 해결 build Path를 확인한다. 프로젝트 우클릭 property 로 진입 Java Compiler에서 Compiler 버전을 맞춰준다. Project Facets에서 Dynamic WebModule , Java의 버전을 맞춰준다. missing 으..