You have been asked to implement internationalization in your JSF web application.
Where do you configure the supported locales?
You have been asked to implement internationalization in your JSF web application.
Where do you configure the supported locales?
To implement internationalization in a JSF web application, the configuration of supported locales is done in the faces-config.xml file. This file is part of the JSF standard for application configuration and allows developers to define various settings, including locale configurations. The <f:view> tag can be used within Facelet pages to set the locale, but the configuration of supported locales is primarily designated in faces-config.xml.
Correct answer is C. FacesConfig.xml - configure <f:view> tag - set locale
C is correct https://docs.oracle.com/cd/E11035_01/workshop102/webapplications/jsf/jsf-app-tutorial/6.ViewDifferentLocale.html
Cannot it be A?