Hi,
I am building a Jersey based Web-App that also contains "normal" jsp pages.
I configured the web.xml to map all requests to the Jersey Servlet Adapter.
<servlet-mapping>
<servlet-name>ServletAdaptor</servlet-name>
<url-pattern>/*</url-pattern>
</servlet-mapping>
Now, the problem is that the JSP pages are not found.
Is there a way to map all requests to Jersey except the *.jsp requests?
Thanks a lot,
Timo