Spring Boot does not honor @WebServlet

前端 未结 3 1265
佛祖请我去吃肉
佛祖请我去吃肉 2021-02-13 12:38

I created a Servlet (extending from HttpServlet) and annotated as per 3.0 specs with

@WebServlet(name=\"DelegateServiceExporter\", urlPatterns={\"/remoting/Deleg         


        
3条回答
  •  灰色年华
    2021-02-13 13:24

    It's possible to load servlets annotated with @WebServlet and their mappings in Spring Boot. To do this you need to use @ServletComponentScan with @Configuration annotation. This also works for @WebFilter and @WebListener annotations.

提交回复
热议问题