Servlet使用註解標註監聽器(Listener)

Servlet3.0提供@WebListener註解將一個實現了特定監聽器接口的類定義爲監聽器,這樣咱們在web應用中使用監聽器時,也再也不須要在web.xml文件中配置監聽器的相關描述信息了。html

  下面咱們來建立一個監聽器,體驗一下使用@WebListener註解標註監聽器,以下所示:java

  

監聽器的代碼以下:web

package me.gacl.web.listener;

import javax.servlet.ServletContextEvent;
import javax.servlet.ServletContextListener;
import javax.servlet.annotation.WebListener;

/**
 * 使用@WebListener註解將實現了ServletContextListener接口的MyServletContextListener標註爲監聽器
 */
@WebListener
public class MyServletContextListener implements ServletContextListener {

    @Override
    public void contextDestroyed(ServletContextEvent sce) {
        System.out.println("ServletContex銷燬");
    }

    @Override
    public void contextInitialized(ServletContextEvent sce) {
        System.out.println("ServletContex初始化");
        System.out.println(sce.getServletContext().getServerInfo());
    }
}

  

Web應用啓動時就會初始化這個監聽器,以下圖所示:app

  

  有了@WebListener註解以後,咱們的web.xml就無需任何配置了jsp

<?xml version="1.0" encoding="UTF-8"?>
<web-app version="3.0" 
    xmlns="http://java.sun.com/xml/ns/javaee" 
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
    xsi:schemaLocation="http://java.sun.com/xml/ns/javaee 
    http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd">
  <display-name></display-name>    
  <welcome-file-list>
    <welcome-file>index.jsp</welcome-file>
  </welcome-file-list>
</web-app>

Servlet3.0規範的出現,讓咱們開發Servlet、Filter和Listener的程序在web.xml實現零配置。ide

轉自:http://www.cnblogs.com/xdp-gacl/p/4226851.htmlspa

相關文章
相關標籤/搜索