2020년 8월 30일 일요일

(동영상)서블릿 컨텍스트 리스너(ServeltContextListener)란? ServletContext 개념, 서블릿 컨텍스트 리스너 작성 실습 http://ojc.asia/bbs/board.php?bo_table=LecServletJSP&wr_id=285

 (동영상)서블릿 컨텍스트 리스너(ServeltContextListener)란?  ServletContext 개념, 서블릿 컨텍스트 리스너 작성 실습 

 

 http://ojc.asia/bbs/board.php?bo_table=LecServletJSP&wr_id=285


package listener;

……

//@WebListener

public class MyListener implements ServletContextListener {

    private ServletContext ctx = null;

    public void contextDestroyed(ServletContextEvent sce)        System.out.println(">>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> Web App   Destroyed...");

         ctx = null;

    }

    public void contextInitialized(ServletContextEvent sce)  {

         ctx = sce.getServletContext();         System.out.println(">>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> Web App Init...");

         System.out.println(ctx.getServletContextName());

    } 

}

 

 

 

<?xml version="1.0" encoding="UTF-8"?>

<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instancexmlns="http://java.sun.com/xml/ns/javaeexsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" version="2.5">

 <listener>

    <listener-class>listener.MyListener</listener-class>

  </listener> 

</web-app>

 

 

47942c5ffafc4151fa78ae84df1c84c7_1598697
47942c5ffafc4151fa78ae84df1c84c7_1598697
47942c5ffafc4151fa78ae84df1c84c7_1598697
47942c5ffafc4151fa78ae84df1c84c7_1598697
47942c5ffafc4151fa78ae84df1c84c7_1598697
47942c5ffafc4151fa78ae84df1c84c7_1598697
47942c5ffafc4151fa78ae84df1c84c7_1598697

 

#서블릿컨텍스트, #ServletContext란, #서블릿강좌, #서블릿동영상, #자바서블릿, #서블릿컨텍스트리스너, #ServletContextListener, #서블릿컨텍스트란, #ServletConfig, #자바서블릿동영상, #서블릿동영상,


댓글 없음:

댓글 쓰기

(C#교육동영상)C# ADO.NET 실습 ODP.NET/ODAC 설치 오라클 함수 호출 실습, C#학원, WPF학원, 닷넷학원, 자바학원

  (C#교육동영상)C# ADO.NET 실습  ODP.NET/ODAC 설치  오라클 함수 호출 실습, C#학원, WPF학원, 닷넷학원, 자바학원 https://www.youtube.com/watch?v=qIPU85yAlzc&list=PLxU-i...