3

JSF 注释 @ListenerFor 不适用于 GlassFish 或 Tomcat。没有错误或警告。它只是不调用方法 processEvent()。

@ListenersFor({@ListenerFor(systemEventClass=PostConstructApplicationEvent.class), 
public class MySystemEventListener implements SystemEventListener {

   @Override
   public void processEvent(SystemEvent event) throws AbortProcessingException {
      if(event instanceof PostConstructApplicationEvent){
         System.out.println("*********************************************");
         System.out.println("processEvent Method is Called: PostConstructApplicationEvent");
         System.out.println("*********************************************");
      }

      if(event instanceof PreDestroyApplicationEvent){
         System.out.println("*********************************************");
         System.out.println("processEvent Method is Called: PreDestroyApplicationEvent");
         System.out.println("*********************************************");
      }
}

   @Override
   public boolean isListenerForSource(Object o) {
      return (o instanceof Application);
   }

}

有什么想法?

4

1 回答 1

5

正如它的javadoc告诉你的那样,它的@ListenerFor目的是放在一个UIComponentRenderer实现上,而不是放在一个独立的SystemEventListener实现上。对于后者,您需要将其注册<system-event-listener>faces-config.xml.

例如

<application>
    <system-event-listener>
        <system-event-listener-class>com.example.MySystemEventListener</system-event-listener-class>
        <system-event-class>javax.faces.event.PostConstructApplicationEvent</system-event-class>
        <system-event-class>javax.faces.event.PreDestroyApplicationEvent</system-event-class>
    <system-event-listener>
</application>

对于特定的功能需求,您可能需要考虑使用预先初始化的应用程序范围 bean。这有点容易,不需要一些冗长的 XML:

@ManagedBean(eager=true)
@ApplicationScoped
public void App {

    @PostConstruct
    public void init() {
        // ...
    }

    @PreDestroy
    public void destroy() {
        // ...
    }

}
于 2012-04-30T18:53:02.100 回答