Re: execute priority ServletContextEvent handler and static block

2012-12-31 Thread Benjamin Possolo
do not put code in a static block in your servlet context listener. the context initialized method is guaranteed to be called exactly once for a servlet context listener before any of your servlets are initialized -- You received this message because you are subscribed to the Google Groups

Re: execute priority ServletContextEvent handler and static block

2012-12-31 Thread Leung
, December 31, 2012 1:59 AM Subject: Re: execute priority ServletContextEvent handler and static block do not put code in a static block in your servlet context listener. the context initialized method is guaranteed to be called exactly once for a servlet context listener before any of your servlets

execute priority ServletContextEvent handler and static block

2012-12-30 Thread Leung
Hi As I recognized from my web application, static block has higher execute priority. So, what should be put in static block, and what should be put in ServletContextEvent Handler. Thanks -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group.