Using
files I\'m able to have i18n text in my JSF pages.
But is it possible to access these same properties in my managed bean
Another possibility:
faces-config.xml
de
de.fhb.resources.text.backend
backendText
YourBean.java
FacesContext context = FacesContext.getCurrentInstance();
Application app = context.getApplication();
ResourceBundle backendText = app.getResourceBundle(context, "backendText");
backendText.getString("your.property.key");