I am trying to deploy a very simple & my first JSF application (following a really good tutorial by BalusC) on glassfish local server. I completed all the steps to create the application. And when I tried to deploy the application on the glassfish server, it just failed with the following exception message:-
cannot Deploy Playground
Deployment Error for module: Playground: Exception while deploying the app :
java.lang.IllegalArgumentException: Invalid URL Pattern: [xhtml]
Could anyone explain where is the fault and how can I amend it ?
The rules for servlet mappings are covered in the Servlet 3.0 specs:
When you encounter this error, check your web.xml and any mapping annotations (WebServlet, WebFilter, etc.)
You can find recommendations for JSF servlet mapping in the JSF 2.0 spec.
Your
<url-pattern>
must either have an extension matching (starts with a*
) or prefix matching (starting with/
) included, not justxhtml
.Here's how I did mine.
This is not a valid url-pattern. You can arrange the mapping as prefix mapping or extension mapping (from the JSF 2.0 specification):
Prefix mapping:
Extension mapping: