| Author |
use of javax.faces.DEFAULT_SUFFIX
|
Joe Harry
Ranch Hand
Joined: Sep 26, 2006
Posts: 8795
|
|
Guys, Why do we specify this as a context-param?? What effect does this play in the web.xml file?
|
SCJP 1.4, SCWCD 1.4 - Hints for you, SCBCD Hints - Demnachst, SCDJWS - Auch Demnachst
Did a rm -R / to find out that I lost my entire Linux installation!
|
 |
Mariusz Choda
Greenhorn
Joined: Apr 26, 2012
Posts: 3
|
|
Parameter javax.faces.DEFAULT_SUFFIX you can set in your application deployment descriptor (web.xml file). By example:
<context-param>
<param-name>javax.faces.DEFAULT_SUFFIX</param-name>
<param-value>.abc</param-value>
</context-param>
You can find more information about JSF engine configuration parameters in my post: http://my-java-planet.blogspot.com/2012/04/how-to-jsf-20-application-configuration.html
Regards
Mariusz
|
 |
 |
|
|
subject: use of javax.faces.DEFAULT_SUFFIX
|
|
|