I am using a servlet which has this mapping (to a vaadin servlet actually)
<servlet-mapping>
<servlet-name>my Application</servlet-name>
<url-pattern>/*</url-pattern>
</servlet-mapping>
I want to make an exception for some html files that I have. It is ok if these are in a subfolder.
How do I do that? Is there a Tomcat-servlet to point to (in the part) which handles file reads?
Rob