vote up 0 vote down star

I have two or three i18n files in my struts application. I am able to switch between these by setting the Global.LOCALE_KEY variable in the session.

Is there a way to set a default locale for the application (probably in the struts-config.xml file, I guess) ? Is the session the only place to set the locale ?

Sure, I could intercept the call to the first page and set the variable in the session, but that's more cumbersome.

flag

74% accept rate

3 Answers

vote up 0 vote down

In your web.xml you can define a context-param:

<context-param>
	<param-name>LOCALE</param-name>
	<param-value>en-GB</param-value>
</context-param>

Then up front in your webapp:

java.util.Enumeration<String> setout = servletContext.getInitParameterNames();
while (setout.hasMoreElements()) {
    String paramName = setout.nextElement();
    configProperties.put(paramName, servletContext.getInitParameter(paramName));
}

although you'll have to change that properties line to stick it on the session instead. You may need to hack up a version of ActionComponentServlet that does pre-initialisation like this.

There's probably a better way to do this, this is just code that I inherited.

link|flag
vote up 0 vote down

Hm, I finally solved this one by writing Java code instead of using struts-config.xml.

I created a context listener to set the value of a static field in the Struts class.

See this question: Is there a way to run a method/class only on tomcat startup?

import javax.servlet.ServletContext;
import javax.servlet.ServletContextEvent;
import javax.servlet.ServletContextListener;

public class AppContextListener implements ServletContextListener {
    @Override
    public void contextDestroyed(ServletContextEvent event) { /* empty. */ }

    @Override
    public void contextInitialized(ServletContextEvent event) {
        /*
         * Default locale
         */
        ServletContext sc = event.getServletContext();
        sc.setAttribute(org.apache.struts.Globals.LOCALE_KEY, "pt_BR");
    }
}
link|flag
vote up 0 vote down

If you just need a resource file to be selected as default simply omit the language code in the file name:

ResourceFile_en_GB.properties
ResourceFile_pt_BR.properties
ResourceFile.propertiers ( <-- this one will be selected as default)
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.