Package version:

Spring Cloud Gateway route definition

interface ScgRoute {
    filters?: string[];
    id: string;
    order?: number;
    predicates?: string[];
    uri: string;
}

Properties

filters?: string[]

Filters of the route

id: string

Id of the route

order?: number

Order of the route

predicates?: string[]

Predicates of the route

uri: string

Uri of the route