I'm starting with J2EE
In the web.xml,the following code:
What does *.jsp represent?Code:<servlet-mapping>
<servlet-name>Example</servlet-name>
<url-pattern>*.jsp</url-pattern>
</servlet-mapping>
I don't understand
Printable View
I'm starting with J2EE
In the web.xml,the following code:
What does *.jsp represent?Code:<servlet-mapping>
<servlet-name>Example</servlet-name>
<url-pattern>*.jsp</url-pattern>
</servlet-mapping>
I don't understand
It means that all requests to urls that end in ".jsp" will be handled by the servlet with name "Faces Servlet".