Re: Add Application specific configurations

2008-08-24 Thread Gabriel Belingueres
These days, dependency injection (or IoC) containers are of common use in applications. They allow you to inject any kind of bean into your actions. S2 comes with a built in dependency injection container [1], or through the plugin mechanism, you can integrate your preferred IoC container (like Sp

RE: Add Application specific configurations

2008-08-24 Thread Dave Newton
--- On Sun, 8/24/08, Ramez Hassan wrote: > But the application I am putting the architecture for, should > contain properties file and xml configurations that should be > loaded sometimes for the application and other configurations per > request/session. You want to re-configure the application p

RE: Add Application specific configurations

2008-08-24 Thread Ramez Hassan
: Re: Add Application specific configurations --- On Sun, 8/24/08, Ramez Hassan wrote: > I need to add certain application specific configurations > into a struts application, as simple as a property bundle. > But I want it to be integrated directly with Struts framework > classes su

Re: Add Application specific configurations

2008-08-24 Thread Dave Newton
--- On Sun, 8/24/08, Ramez Hassan wrote: > I need to add certain application specific configurations > into a struts application, as simple as a property bundle. > But I want it to be integrated directly with Struts framework > classes such that it's accessible from all actions and contexts. > A