W3Cschool
恭喜您成為首批注冊用戶
獲得88經(jīng)驗值獎勵
以下代碼顯示如何處理應用程序級事件。
JSF在JSF應用程序生命周期中有處理應用程序特定任務的系統(tǒng)事件偵聽器。
我們可以通過實現(xiàn)SystemEventListener接口來處理系統(tǒng)級事件,并在faces-config.xml中注冊system-event-listener類。
我們還可以通過傳遞f:event的監(jiān)聽器屬性中的托管bean方法的名稱來使用方法綁定來處理系統(tǒng)級事件。
以下代碼顯示了如何實現(xiàn)SystemEventListener接口。
public class CustomSystemEventListener implements SystemEventListener { @Override public void processEvent(SystemEvent event) throws AbortProcessingException { if(event instanceof PostConstructApplicationEvent){ System.out.println("Application Started. PostConstructApplicationEvent occurred!"); } } }
然后我們可以在faces-config.xml中注冊系統(tǒng)事件的自定義系統(tǒng)事件偵聽器
<system-event-listener> <system-event-listener-class> cn.w3cschool.common.CustomSystemEventListener </system-event-listener-class> <system-event-class> javax.faces.event.PostConstructApplicationEvent </system-event-class> </system-event-listener>
下面的代碼顯示了處理系統(tǒng)級事件的方法綁定方式。
public void handleEvent(ComponentSystemEvent event){ data="Hello World"; }
使用上面的方法
<f:event listener="#{user.handleEvent}" type="preRenderView" />
以下代碼來自MyListener.java。
package cn.w3cschool.common; import javax.faces.application.Application; import javax.faces.event.AbortProcessingException; import javax.faces.event.PostConstructApplicationEvent; import javax.faces.event.PreDestroyApplicationEvent; import javax.faces.event.SystemEvent; import javax.faces.event.SystemEventListener; public class MyListener implements SystemEventListener{ @Override public void processEvent(SystemEvent event) throws AbortProcessingException { if(event instanceof PostConstructApplicationEvent){ System.out.println("PostConstructApplicationEvent is Called"); } if(event instanceof PreDestroyApplicationEvent){ System.out.println("PreDestroyApplicationEvent is Called"); } } @Override public boolean isListenerForSource(Object source) { //only for Application return (source instanceof Application); } }
以下代碼來自demo.xhtml。
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xmlns:h="http://java.sun.com/jsf/html"> <h:body> <h2>This is start.xhtml</h2> </h:body> </html>下載 Pre_PostConstructApplicationEvent.zip
將生成的WAR文件從目標文件夾復制到Tomcat部署文件夾,并運行Tomcat-Install-folder/bin/startup.bat。
Tomcat完成啟動后,在瀏覽器地址欄中鍵入以下URL。
http://localhost:8080/simple-webapp/demo.xhtml
Copyright©2021 w3cschool編程獅|閩ICP備15016281號-3|閩公網(wǎng)安備35020302033924號
違法和不良信息舉報電話:173-0602-2364|舉報郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號
聯(lián)系方式:
更多建議: