반응형
jsp 프로젝트를 import해서 돌려볼 일이 생겼다.
sts에 import했는데 이런 오류 메세지가 쏟아졌다.
Multiple annotations found at this line:
- The superclass "javax.servlet.http.HttpServlet" was not found on the Java Build Path
서버 라이브러리가 추가되지 않아서 생기는 오류다.
프로젝트 우클릭 > Build Path > Configure Build Path >
Server Runtime을 선택하고 tomcat을 사용할 버전에 맞게 선택해서 추가해준다.
++
이클립스에서 만든 Dynamic Web Project는 기본적으로 WebContent라는 폴더를 만들어 그 폴더를 루트로 읽는다. 하지만 import한 jsp 프로젝트의 source path가 WebContent가 아닌 경우.
프롤젝트 폴더 -> .settings 폴더 -> org.eclipse.wst.common.component를 열어서
이렇게 본인이 사용할 폴더 이름에 맞게 수정해준다.
또 jsp 프로젝트를 볼 일이 생길까 싶지만 기록해놓는다.
반응형