You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on May 14, 2025. It is now read-only.
Chris Bono edited this page Feb 22, 2024
·
1 revision
What's New / Breaking Changes
Trailing slash removed from REST API
As of Spring Framework 6.0, the trailing slash matching configuration option has been deprecated and its default value set to false.
This means that previously, a controller w/ @GetMapping("/jobs/executions") would match both "GET /jobs/executions" and "GET /jobs/executions/".
As of now, "GET /jobs/executions/" will result in 404.
Solution
If you are calling the Dataflow REST API directly, remove any trailing slashes from the endpoint urls.