posted 20 years ago
If you have the following property in your ApplicationResources.properties file:
then the following tag should read the "foo.bar.FrontPageTitle" property and print it on the web page:
The ApplicationResources file must be somewhere on the classpath in order for Struts to find it. If, for example, you've deployed it at "WEB-INF/classes/ApplicationResources.properties", you need to specify the following in your struts-config.xml:
If you've deployed the file under a package structure, e.g. "WEB-INF/classes/com/company/foo/ApplicationResources.properties", then you need to reflect the location in your struts-config.xml accordingly:
Does that help?