Is there a way to get a list of listeners for an event? I'm using weld with glassfish 3.1.1. For example to find out which classes are observing TestEvent:

@Stateless
public class TestListener {
    public void listenToHello(@Observes TestEvent testEvent) {
    }
}

Thanks.

link|improve this question

67% accept rate
feedback

1 Answer

up vote 2 down vote accepted

You need to inject the BeanManager and use its methods. Here is the method you could use - http://docs.jboss.org/cdi/api/1.0/javax/enterprise/inject/spi/BeanManager.html#resolveObserverMethods%28T,%20java.lang.annotation.Annotation...%29.

link|improve this answer
Thanks, I've found an updated reference documnent that contains this information, but was missing from the version I'd been using. – Oversteer Dec 28 '11 at 15:50
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.