ServletConfig는 각 Servlet 객체에 대해 생성된다.(다음 링크의 그림 참조) https://vibeee.tistory.com/140 ServletContext 클래스 톰캣 컨테이너 실행 시 각 컨텍스트(웹 애플리케이션)마다 한 개의 ServletContext 객체를 생성하고, 톰캣 컨테이너가 종료하면 ServletContext 객체 역시 소멸됨. ServletContext 객체는 웹 애플리케이션이 vibeee.tistory.com 그리고 서블릿 API 계층 구조를 보면 ServletConfig 인터페이스를 GenericServlet 클래스가 실제로 구현하고 있다.(다음 링크의 그림 참조) https://vibeee.tistory.com/107 서블릿 API 계층 구조와 기능 서블릿은 자바..