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 Routing
Routing.Builder. build()
Builds a new routing instance.Methods in io.helidon.webserver with parameters of type Routing Modifier and Type Method Description WebServer.Builder
WebServer.Builder. addNamedRouting(String name, Routing routing)
Associates a dedicated routing with an additional server socket configuration.WebServer.Builder
WebServer.Builder. addSocket(SocketConfiguration socketConfiguration, Routing routing)
Add a named socket and routing.static WebServer.Builder
WebServer. builder(Routing routing)
Creates a builder of theWebServer
.static WebServer
WebServer. create(Routing routing)
Creates new instance from provided routing and default configuration.static WebServer
WebServer. create(Routing routing, Config config)
Creates new instance from provided configuration and routing.static WebServer
WebServer. 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.Builder
now.static WebServer
WebServer. 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.Builder
now.WebServer.Builder
WebServer.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.Builder
WebServer.Builder. addNamedRouting(String name, Supplier<Routing> routingBuilder)
Associates a dedicated routing with an additional server socket configuration.static WebServer.Builder
WebServer. builder(Supplier<? extends Routing> routingBuilder)
Creates a builder of theWebServer
.static WebServer
WebServer. 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.Builder
now.static WebServer
WebServer. create(Supplier<? extends Routing> routingBuilder)
Creates new instance from provided routing and default configuration.static WebServer
WebServer. create(Supplier<Routing> routingBuilder, Config config)
Creates new instance from provided configuration and routing.WebServer.Builder
WebServer.Builder. routing(Supplier<Routing> defaultRouting)
Configure the default routing of this WebServer.
-