Hi,
Currently tool generates a fixed (non-configurable) value for this
servlet-mapping/url-pattern:
<url-pattern>/restbeans/*</url-pattern>
(we will change this to '/resources/*' matching the new jersey
SimpleServlet sample)
The effect is that RESTful application's URL space has to include
"restbeans", e.g.:
http://www.acme.com/BookStore/restbeans/books/12345
This is kind of undesirable compared with just:
http://www.acme.com/BookStore/books/12345
We wonder if we could just use:
<url-pattern>/*</url-pattern>
so the latter URL is possible.
Thanks,
-Nam