[Stripes-users] ActionBean initialization

2010-04-28 Thread essey
Hi, how would I initialize something in the ActionBean on app server startup. I need to load an parse a configuration file and use it in all the upcoming action calls. (same like HttpServlet.init() ) Best regards Yusuf

Re: [Stripes-users] ActionBean initialization

2010-04-28 Thread Levi Hoogenberg
You could use a ServletContextListener and store your configuration in the servlet context in contextInitialized(). Action beans can access the servlet context via their action bean contexts. Regards, Levi On Wed, Apr 28, 2010 at 2:25 PM, essey es...@hotmail.com wrote: Hi, how would I