JSP中Listener和Timer的運用

來源:互聯網
上載者:User

其他的JSP文章:

在JSP中使用Bean自動屬性填充機制

JSP列出伺服器環境變數

JSP的errorPage指令異常轉向錯誤頁的實現機制及應用

Jsp利用404錯誤頁進行URL重寫

有的時候需要在JSP運行時,定時執行一些程式,比如說統計流量、更新快取資料等,通常要使用Listener和Timer,下面就是一個簡單應用,目的就是時刻檢查程式是否正在執行當中。

首先建立一個TimerTask

public class LogTask extends TimerTask {
    @Override
    public void run() {
        // TODO Auto-generated method stub
        SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
        System.out.println( sdf.format(new Date()) + "--this programe is running!");
        
    }
}

接著建立監聽程式

public class LogListener implements ServletContextListener {
    private Timer timer = null;
    @Override
    public void contextDestroyed(ServletContextEvent arg0) {
        // TODO Auto-generated method stub
        if (timer != null)
        {
            timer.cancel();
        }
    }

    @Override
    public void contextInitialized(ServletContextEvent arg0) {
        // TODO Auto-generated method stub
        if (timer == null)
        {
            timer = new Timer();
            timer.schedule(new LogTask(), new Date(), 1000);
        }
    }

}

在web.xml配置

<listener>
     <listener-class>org.heroking.web.LogListener</listener-class>
 </listener>

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.