I have these URLs
abc.com/aa/url1
abc.com/ab/url2
abc.com/ac/url3
etc.
How to setup web.xml to map this pattern to a servlet?
<servlet>
<servlet-name>NAME</servlet-name>
<servlet-class>MyClass</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>NAME</servlet-name>
<url-pattern>/xx/*</url-pattern>
</servlet-mapping>
Where xx is a two-letter string. What do I put in the place of xx so that all links above will go to MyClass?