Uses of Class
io.helidon.webserver.Routing.Builder
Packages that use Routing.Builder
-
Uses of Routing.Builder in io.helidon.webserver
Methods in io.helidon.webserver that return Routing.BuilderModifier and TypeMethodDescriptionRouting.Builder.any(PathMatcher pathMatcher, Handler... requestHandlers) Routing.Builder.anyOf(Iterable<Http.RequestMethod> methods, Handler... requestHandlers) Routing.Builder.anyOf(Iterable<Http.RequestMethod> methods, PathMatcher pathMatcher, Handler... requestHandlers) Routing.Builder.anyOf(Iterable<Http.RequestMethod> methods, String pathPattern, Handler... requestHandlers) static Routing.BuilderRouting.builder()Creates new instance ofrouting builder.Routing.Builder.delete(PathMatcher pathMatcher, Handler... requestHandlers) <T extends Throwable>
Routing.BuilderRouting.Builder.error(Class<T> exceptionClass, ErrorHandler<T> errorHandler) Registers an error handler that handles the given type of exceptions.Routing.Builder.get(PathMatcher pathMatcher, Handler... requestHandlers) Routing.Builder.head(PathMatcher pathMatcher, Handler... requestHandlers) Routing.Builder.onNewWebServer(Consumer<WebServer> webServerConsumer) Routing.Builder.options(PathMatcher pathMatcher, Handler... requestHandlers) Routing.Builder.patch(PathMatcher pathMatcher, Handler... requestHandlers) Routing.Builder.post(PathMatcher pathMatcher, Handler... requestHandlers) Routing.Builder.put(PathMatcher pathMatcher, Handler... requestHandlers) Routing.Builder.register(WebTracingConfig webTracingConfig) Routing.Builder.trace(PathMatcher pathMatcher, Handler... requestHandlers) Method parameters in io.helidon.webserver with type arguments of type Routing.BuilderModifier and TypeMethodDescriptionWebServer.Builder.routing(Consumer<Routing.Builder> routing) Configure the default routing of this WebServer.