Skip to content

Commit

Permalink
#742 change path name + description
Browse files Browse the repository at this point in the history
vjohnslhm committed Jan 30, 2025
1 parent cfa822c commit cfcdc54
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -74,11 +74,13 @@ spring:
- id: gui-<frontend-name> // [!code focus:4]
uri: http://kubernetes.docker.internal:<PORT>/
predicates:
- Path=/**
- Path=/<frontend-name>/**
```

> [!IMPORTANT]
> Die route mit dem Pfad `Path=/**` muss immer an letzter Stelle stehen, da sie sonst alle anderen Routen überschreibt.
> Es wird immer die erste Route verwendet, welche die Bedingungen (predicates) erfüllt. Nur `Path=/**` wäre auf alle Pfade
> anwendbar, weshalb alle Routen, die danach noch kommen, nicht mehr berücksichtigt werden. Daher muss eine Route mit
> dem Pfad `Path=/**` immer an letzter Stelle stehen.

## Ungenutzte Refarch-Elemente entfernen

0 comments on commit cfcdc54

Please sign in to comment.