Hi Everyone,
I have a static resource which is defined as webapps/myApp/home/index.html and I have defined mapping of a servlet in the same web app with URL pattern as "/home/index.html".
e.g. <servlet-mapping>
<servlet-name>xyz</servlet-name>
<url-pattern>/home/index.html</url-pattern>
</servlet-mapping>
If a URL
http://host ort/myApp/home/index.html is entered through browser, will it get the static resource index.html or invoke the servlet xyz?
thanks,
Dev