Re: how to get runtime configuration

2010-04-22 Thread Chris Pratt
I think this is the preferred method of obtaining the Configuration object: /** * Struts: Inject the Struts Configuration for looking up the proper Action * * @param configuration The Struts Configuration */ @Inject public void setConfiguration (Configuration configuration) {

Re: how to get runtime configuration

2010-04-22 Thread Bhaarat Sharma
nevermind...got it: Dispatcher.getInstance().getConfigurationManager().getConfiguration().getRuntimeConfiguration(); On Thu, Apr 22, 2010 at 9:41 AM, Bhaarat Sharma wrote: > I was going through the API's and came across this > method