I can get a URI template in the form of "/a/b" or "/a/{b}" to work. But when I try "/a/b/{c}", I get a HTTP 404 and a message in the log in the form of "No mapping found for HTTP request with URI [/myapp/a/b/c]..."
I noticed all the examples in section 15.3.2.1 show URI templates in the form of "/a/{b}" or /a/{b}/c/{d}". So is "/a/b/{c}" not possible? Is there anything I need to set in web.xml to make this happen? Or can some configuration prevent that pattern from being mapped?


Reply With Quote
.

