Spring MVC/Rest has DispatcherServlet as an entry point. What is the Jersey's entry point ? I am asking because some exception is thrown and I don't know where from.
Asked
Active
Viewed 904 times
1 Answers
4
Jersey analogue of Spring's DispatchServlet
is its ServletContainer
. This is what we can configure as the application servlet, just like the DispatchServlet
is the application servlet for Spring.

Paul Samsotha
- 205,037
- 37
- 486
- 720
-
Thanks for the answer :) – Adelin Sep 27 '16 at 14:12