internationalization « Session « JSF Q&A





1. JSF locale is set per request,not for session    stackoverflow.com

faces-config:

<application>
        <locale-config>
            <default-locale>ru</default-locale>
           ...

2. Using multiple language in JSF application with session scope    stackoverflow.com

Can anyone help with the above. How can my jsf pages remember the language choose in a page to another? I used <f:view locale="#{language.locale}"> and used the language bean as session scoped ...