I've been searching the net but couldn't find a solution for this. I need help on how to store my application specific configuration parameters into a flat text file or xml file. Is there a java package or class that provides this service?
For example configuration for datatable pagination length, etc. So I don't have to recompile my application whenever I need to change the pagination parameters.
Something like this: Maybe myApp.cfg file which contain this. pagination: 10,20,30,50
And then in my xhtml file I would have something like this.
<p:dataTable id="dtClientList" value="#{saClientController.lazyModel}" rowsPerPageTemplate="#{myApp.cfg.pagination}">
And maybe even access the configuration parameter from within my session scoped or application scoped backing bean. Then reuse them for multiple users.
Is it possible to user resource bundle properties file to store configuration parameters such as pagination length and access the parameters into backing bean like this?
FacesContext fc = FacesContext.getCurrentInstance();
ResourceBundle bundle = fc.getApplication().getResourceBundle(fc,"bundle_name");
bundle.getString("resource_identifier");
Im searching for something similar to app.config file in dot net implementation which is XML.
Please help. And if my question does not make sense, do let me know. Big Thank You.

<key=<value>and load it intoPropertieslike thisProperties props = new Properties(); InputStream in = this.getClass().getResourceAsStream("myapp.properties"); props.load(in);And then from it you can get value for key like a map likeString rowsStr=props.get("paging_rows");– prajeesh kumar Mar 5 '12 at 9:01