> Hi I have a requirement which requires me to load
> different properties files based on a certain set of
> conditions.
If x == true, then load property file x.properties;
If y == 3, then load property file y.preoperties;
If z == 6, then load property file z.properties;
> Is there a way i can do it in Struts?
Sure. The logic I specified above can be placed in any Struts Action class.