SpringBoot Undertow : how to dispatch to worker thread
i'm currently have a look a springboot undertow and it's not really clear (for me) how to dispatch an incoming http request to a worker thread for blocking operation handling. Looking at the class UndertowEmbeddedServletContainer.class , it look like there is no way to have this behaviour since the only HttpHandler is a ServletHandler, that allow @Controller configurations private Undertow createUndertowServer() { try { HttpHandler servletHandler = this.manager.start(); this.builder.setHandler(getContextHandler(servletHandler)); return this.builder.build(); } catch (ServletException ex) {