ServletContextListener 란? " ServletContextListener " 서블릿컨텍스트리스너는 컨텍스트 초기화 파라미터를 읽어들여 파라미터를 인자로 하여 객체를 생성한다.그 다음 리스너는 객체를 ServletContext 속성에 묶어 둔다.그러면 서블릿에서는 객체를 끄집어 낼 수가 있다. 이 부분이 핵심인데 이렇게 하면 서블릿이 객체를 공유 할 수 가 있다. 이제 서블릿이 컨텍스트 파라미터를 읽을 필요가 없다.객체를 끄집어 내어 사용하면 된다. import javax.servlet.ServletContextListener;public class MyServletContextListener implements ServletContextListener{public void contextInitialized(ServletContext.. 더보기 이전 1 ··· 4 5 6 7 8 9 10 ··· 12 다음