views:

177

answers:

0

I have a properties file in my application which is built using S2. The properties files resides in WEB-INF/classes and are mentioned in struts.properties as:

struts.custom.i18n.resources=myproperty1,myproperty2

to use the properties i just do the following in my JSP's

<s:text name="my.property.title"/>

this setup works fine on the old App server we were using (Sun AppServer 8.2). However, this setup does not work on GlassFish V2 server.

Has anyone come across this issue?

What are some other options that I can try? I am willing to try new options as long as my code in JSP's remains mostly untouched.