Tell me please can i set all parameters in “javax.faces.”(web.xml) with settings like this:
<context-param>
<param-name>javax.faces.</param-name>
<param-value>true</param-value>
</context-param>
this settings are mean some thing or not? I just seen it in one place and i have no exception with this when i start application, but i can’t understand what it mean. Tryed to browse internet for answer but without fortune.
No, it doesn’t work that way. You really need to set them individually. Note that there are also context parameters which doesn’t accept a boolean value at all. So your theoretical approach would have failed for them anyway.
For an overview of all available standard JSF context parameters, read chapter 11.1.3 “Application Configuration Parameters” of the JSF specification (for evaluation). For an online copy in flavor of a HTML page, check JBoss AS 6 manual chapter 5.1.
Note that JSF implementations have also their own specific set of context parameters, such as
com.sun.facesones for Mojarra andorg.apache.myfacesones for MyFaces.