I have a web application that bootstraps event-receiver from external system when a ServletContext is initialized. All components that need to receive events are listening for ServletContext attribute events and attaching themselves as listeners. As I do not want the event-listeners to miss events, I want to start the event-source only after all listeners have been attached.
I could not find any threading requirements for initialization in the Servlet 2.5 and 3.0 specification, so I was assuming completely async initialization model, yet I noticed that Tomcat fires the ServletContext attribute-changed events immediately from the setAttribute() method. This would mean that if all other servlet containers follow suit, I can simplify my startup procedure.
EDIT: As requested, here is an example (I have tried to be as concrete as possible). In my web.xml, I currently have registered:
- BootstrapEventSourceContextListener on servlet-context initialization:
- creates event-source and sets it as servlet-context attribute.
- the event-source is not started at this time (i.e. it does not emit events)
- ConsumerAContextAttributeListener when it receives a notification that the attribute containing the event-source has been set:
- looks up the event-source from the servlet-context attribute
- instantiates ConsumerA
- attaches ConsumerA to the event-source
- sets the data model of ConsumerA as attribute in the servlet-context
- ConsumerBContextAttributeListener - same as Comsumer A
- ConsumerCContextAttributeListener - same as A and B, except that it also depends on the datamodel of B
- StartEventSourceFilter when a page is accessed:
- looks up the event-source from the servlet-context
- starts the event-source
- blocks until the event-source has received initial snapshot
- continues to render the page
The question is whether I really need the StartEventSourceFilter, or is it guaranteed that all the consumers will be attached the moment I set the event-source attribute (i.e. attribute listeners are not deferred). I care about Tomcat, Jetty and Websphere.
Filterfor the job, but the "on context init" is normally to be done by aServletContextListener. Also there is no such method asattributeChanged()in the entire servlet API. There's however anattributeReplaced()inServletContextAttributeListener. – BalusC Jan 6 at 4:05