Skip to content

Instantly share code, notes, and snippets.

@usmansaleem
Created February 17, 2019 00:21
Show Gist options
  • Save usmansaleem/3d9201c5994b27f9a4a14068ec69bc2a to your computer and use it in GitHub Desktop.
Save usmansaleem/3d9201c5994b27f9a4a14068ec69bc2a to your computer and use it in GitHub Desktop.
SpringBoot Undertow customization
public UndertowServletWebServerFactory servletWebServerFactory() {
UndertowServletWebServerFactory factory = new UndertowServletWebServerFactory();
factory.addBuilderCustomizers((UndertowBuilderCustomizer) builder -> builder.addHttpListener(8080, "0.0.0.0"));
return factory;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment