Error-HttpServlet cannot be resolved to a type
CODEDRAGON ㆍDevelopment/JSP
반응형
에러 메시지
HttpServlet cannot be resolved to a type |
|
에러원인
- jar파일이 부족한 경우
- jar파일의 path가 지정되어 있지 않은 경우
- jar파일의 path가 잘못된 경우
- import 시킨 것이 제대로 인식 하지 못할 경우
발생 시점
- 서블릿을 새로 만들 때 발생
- 이클립스를 다시 실행할 때 발생
해결방법
필요한 jar파일을 직접 추가하면 해결이 됩니다.
프로젝트 선택 >> 마우스 우클릭 >> [Build path] -> [Configure Build Path…]
[Libraries] 탭의 [Add Library…] 버튼 클릭
[Server Runtime] 선택 후 >> [Next] 버튼 클릭
설치된 Server 항목 선택 후 >> [Finish] 버튼 클릭
[Apply] >> [OK]
or
[Libraries] 탭 -> [Add External JARs..].
톰캣이 경로의 lib폴더로 이동 >>
jsp-api.jar, servlet-api.jar 두개 파일을 선택한 후 >> [열기] 버튼 클릭
C:\CodeLab\apache-tomcat-7.0.65\lib
설정완료!!
'Development > JSP' 카테고리의 다른 글
web.xml에 서블릿 맵핑 - <servlet-name>, <servlet-class>, <url-pattern> (0) | 2016.12.13 |
---|---|
스크립트(Script), 스크립트 요소 - 스크립트릿(Scriptlet), 선언부(Declaration), 표현식(expression) (0) | 2016.12.07 |
Error-Server Tomcat v7.0 Server at localhost failed to start. (0) | 2016.11.27 |
자카르타 DBCP API 다운받기 - download (0) | 2016.11.21 |
JSTL(JSP standard Tag Library) 다운받기 (0) | 2016.11.15 |