The mapping matches URLs using the following rules:
Some examples:
com/t?st.jsp - matches com/test.jsp but also com/tast.jsp or com/txst.jspcom/*.jsp - matches all .jsp files in the com directorycom/**/test.jsp - matches all test.jsp files underneath the com pathorg/springframework/**/*.jsp - matches all .jsp files underneath the org/springframework pathorg/**/servlet/bla.jsp - matches org/springframework/servlet/bla.jsp but also org/springframework/testing/servlet/bla.jsp and org/servlet/bla.jsp | |
| |