Interface RouteProviderBeforeHandlerInterface

All Superinterfaces:
io.javalin.http.Handler

public interface RouteProviderBeforeHandlerInterface extends io.javalin.http.Handler
Interface for before handlers used by IsolatedSpaRouteProvider. Extends Javalin's Handler interface for compatibility.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    handle(io.javalin.http.Context ctx)
    Handle request before route processing
  • Method Details

    • handle

      void handle(io.javalin.http.Context ctx) throws Exception
      Handle request before route processing
      Specified by:
      handle in interface io.javalin.http.Handler
      Parameters:
      ctx - Javalin context
      Throws:
      Exception