3

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.

Adelin
  • 18,144
  • 26
  • 115
  • 175

1 Answers1

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