I am using locale on my application, it perfectly works, but the problem is that, when I am in the main page (index.jsp) when I click on a specific language in different pages of the application, it goes to index.jsp page, how can I change the mapping so when I select a specific language in a page it stays in that page and change the language of the application ? please let me know if you need me to upload any other part of the code.
Struts.xml
<action name="locale" class="com.myapp.struts.LocaleAction">
<result name="SUCCESS" type="tiles">baseLayout</result>
</action>
Action
public class LocaleAction extends ActionSupport{
@Override
public String execute(){
return "SUCCESS";
}
}
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…