i saw some samples creating the JSF pages with extension .jsp and other samples creating it with .xhtml extension, other samples chooses .jsf i just want to know what is the difference between above extensions when working with JSF pages, and how to choose the appropriate extension ?
|
JSP is an old view technology and widely used in combination with JSF 1.x. Facelets (XHTML) is the successor of JSP and introduced as default view technology of JSF 2.x at end of 2009. When you were seeing JSPs, you were perhaps reading old/outdated books/tutorials/resources targeted on JSF 1.x. You should generally ignore them when developing with JSF 2.x and head to resources targeted on JSF 2.x, otherwise you may end up in confusion because many things are done differently in JSF 2.x on Facelets. The Since JSF 2.x you can also use See also: |
||||
|
|
|
This can be changed via configuration (e.g. see the Other extension mappings ( From the spec:
|
||||
|
|