Uses of Interface
io.helidon.webserver.Routing
Packages that use Routing
-
Uses of Routing in io.helidon.webserver
Methods in io.helidon.webserver that return RoutingMethods in io.helidon.webserver with parameters of type RoutingModifier and TypeMethodDescriptionWebServer.Builder.addNamedRouting(String name, Routing routing) Associates a dedicated routing with an additional server socket configuration.WebServer.Builder.addSocket(SocketConfiguration socketConfiguration, Routing routing) Add a named socket and routing.static WebServer.BuilderCreates a builder of theWebServer.static WebServerCreates new instance from provided routing and default configuration.static WebServerCreates new instance from provided configuration and routing.static WebServerWebServer.create(ServerConfiguration configuration, Routing routing) Deprecated.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.Configure the default routing of this WebServer.Method parameters in io.helidon.webserver with type arguments of type RoutingModifier and TypeMethodDescriptionWebServer.Builder.addNamedRouting(String name, Supplier<Routing> routingBuilder) Associates a dedicated routing with an additional server socket configuration.static WebServer.BuilderCreates 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 WebServerCreates new instance from provided routing and default configuration.static WebServerCreates new instance from provided configuration and routing.Configure the default routing of this WebServer.
WebServer.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.