Servlet and path parameters like /xyz/{value}/test, how to map in web.xml?
It’s not supported by Servlet API to have the URL pattern wildcard * in middle of the mapping. It only allows the wildcard * in the end of the mapping like so /prefix/* or in the start of the mapping like so *.suffix. With the standard allowed URL pattern syntax your best bet is to … Read more