When I add ApplicationListener to a class, Spring instantiates the bean eagerly (probably to make sure that the bean gets all the events).

In my case, I have a bean which listens for "CacheFlush" events (i.e. I don't really care how many I might miss).

How do I implement a lazy ApplicationEvent listener in Spring 3.0?

link|improve this question

77% accept rate
feedback

1 Answer

up vote 0 down vote accepted

I am not sure if what you want to do is possible directly, but one potential solution is to have a separate Observable bean listen for the cache flush events and notify its Observers when one comes in. Have your lazy bean register with the Observable when it is initialized.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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