Programming/JSP,Servlet

[JSP/Servlet] WebServlet cannot be resolved to a type 에러 해결 방법 (Tomcat & Eclipse)

Nirsa 2022. 11. 29. 15:51
반응형
WebServlet cannot be resolved to a type 에러 해결 방법 (Tomcat & Eclipse)

WebServlet cannot be resolved to a type 에러는 프로젝트 파일을 import 하거나 설정 도중 톰캣의 Build Path가 누락되어 발생할 수 있는 에러 입니다. 아래와 같이 프로젝트의 Build Path에 톰캣을 추가하여 해결할 수 있습니다.

 

1. 프로젝트 우클릭 → 하단의 Properties 클릭

 

2. Java Build Path → Libraries → Add Library...

 

3. Server Runtime → Next → Apache Tomcat v8.5 (설치했던 톰캣 버전에 따라 다를 수 있습니다) → Finish

 

이후 Apply 하면 WebServlet cannot be resolved to a type 에러가 사라진걸 확인할 수 있습니다.

반응형