I created a Servlet (extending from HttpServlet) and annotated as per 3.0 specs with
@WebServlet(name=\"DelegateServiceExporter\", urlPatterns={\"/remoting/Deleg
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.
@WebServlet
@ServletComponentScan
@Configuration
@WebFilter
@WebListener