Interface UndertowBuilderConfigurator


public interface UndertowBuilderConfigurator
This interface is discovered as a service provider for configuring the Undertow.Builder before it builds the server and starts it.

Implementations of this service will be executed after the Undertow.Builder is initialized, but before the server starts. You can optionally use the Priority annotation for ordered execution.

  • Method Summary

    Modifier and Type
    Method
    Description
    void
    configure(io.undertow.Undertow.Builder builder)
    Allows configuring a Undertow.Builder before the server is built.
  • Method Details

    • configure

      void configure(io.undertow.Undertow.Builder builder)
      Allows configuring a Undertow.Builder before the server is built.
      Parameters:
      builder - the builder used for configuring the server