Uses of Interface
io.helidon.webserver.Routing
-
Packages that use Routing Package Description io.helidon.webserver Reactive web server API. -
-
Uses of Routing in io.helidon.webserver
Methods in io.helidon.webserver that return Routing Modifier and Type Method Description RoutingRouting.Builder. build()Builds a new routing instance.Methods in io.helidon.webserver with parameters of type Routing Modifier and Type Method Description WebServer.BuilderWebServer.Builder. addNamedRouting(String name, Routing routing)Associates a dedicated routing with an additional server socket configuration.WebServer.BuilderWebServer.Builder. addSocket(SocketConfiguration socketConfiguration, Routing routing)Add a named socket and routing.static WebServer.BuilderWebServer. builder(Routing routing)Creates a builder of theWebServer.static WebServerWebServer. create(Routing routing)Creates new instance from provided routing and default configuration.static WebServerWebServer. create(Routing routing, Config config)Creates new instance from provided configuration and routing.static WebServerWebServer. create(ServerConfiguration configuration, Routing routing)Deprecated.since 2.0.0 - please useWebServer.create(Routing, io.helidon.config.Config)instead for instances based onConfig, orWebServer.builder(Routing)to configure server configuration by hand (as you would onSocketConfiguration.Buildernow.static WebServerWebServer. create(Supplier<? extends ServerConfiguration> configurationBuilder, Routing routing)Deprecated.since 2.0.0 - please useWebServer.create(io.helidon.webserver.Routing, io.helidon.config.Config)instead for instances based onConfig, orWebServer.builder(io.helidon.webserver.Routing)to configure server configuration by hand (as you would onSocketConfiguration.Buildernow.WebServer.BuilderWebServer.Builder. routing(Routing defaultRouting)Configure the default routing of this WebServer.Method parameters in io.helidon.webserver with type arguments of type Routing Modifier and Type Method Description WebServer.BuilderWebServer.Builder. addNamedRouting(String name, Supplier<Routing> routingBuilder)Associates a dedicated routing with an additional server socket configuration.static WebServer.BuilderWebServer. builder(Supplier<? extends Routing> routingBuilder)Creates a builder of theWebServer.static WebServerWebServer. create(ServerConfiguration configuration, Supplier<? extends Routing> routingBuilder)Deprecated.since 2.0.0 - please useWebServer.create(java.util.function.Supplier, io.helidon.config.Config)instead for instances based onConfig, orWebServer.builder(java.util.function.Supplier)to configure server configuration by hand (as you would onSocketConfiguration.Buildernow.static WebServerWebServer. create(Supplier<? extends Routing> routingBuilder)Creates new instance from provided routing and default configuration.static WebServerWebServer. create(Supplier<Routing> routingBuilder, Config config)Creates new instance from provided configuration and routing.WebServer.BuilderWebServer.Builder. routing(Supplier<Routing> defaultRouting)Configure the default routing of this WebServer.
-