xml 파일 HelloServlet com.hello.HelloServlet.class HelloServlet /HelloServlet에러문구com.hello.HelloServlet.class:1 Failed to load resource: the server responded with a status of 404 ()의미 주소가 틀렸다.404 에러는 주소가 틀려서 나타나는 에러 문구이다.해결방법 틀린 주소를 찾아야한다. xml 파일 만들때 servlet-class 주소를 잘못 적었다.com.hello.HelloServlet.class class 파일이지만 .class는 생략해서 적어야한다. com.hello.HelloServlet 해결완료~