Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to change locale in a Struts action class?

I have an Action class, and I want to get the locale of my app and change it here, but I don't know how and can't find an answer.

I can get the current locale using super.getLocale().toString();

But how to set locale I don't know.

public class LoginAction extends ActionSupport {

    private String login;
    private String password;
    private String language;

    @Override
    public String execute() throws Exception {
        String result = Factory.INSTANCE.getUserDao().checkUser(login, password);
        if(result == null){
            return ERROR;
        }
        return SUCCESS;
    }

    public String getLogin() {
        return login;
    }

    public void setLogin(String login) {
        this.login = login;
    }

    public String getPassword() {
        return password;
    }

    public void setPassword(String password) {
        this.password = password;
    }

    public String getLanguage() {
        return language;
    }

    public void setLanguage(String language) {
        this.language = language;
    }

    @Override
    public void validate() {
        super.validate();
        if(login.isEmpty() | password.isEmpty()){
            addActionError(getText("login.error"));
        }else {
            addActionMessage(getText("login.correct"));
        }
    }
}


I want to change the locale for my app right in the above Action class. How can I do this?

like image 996
Aleksei Bulgak Avatar asked Oct 15 '12 07:10

Aleksei Bulgak


1 Answers

Use ActionContext.getContext().setLocale(locale) and to put it in HTTP session session.put(I18nInterceptor.DEFAULT_SESSION_ATTRIBUTE, locale).

like image 98
Aleksandr M Avatar answered Sep 25 '22 17:09

Aleksandr M