-
Notifications
You must be signed in to change notification settings - Fork 582
SCDF 3.x What's New Breaking Changes
Chris Bono edited this page Feb 22, 2024
·
1 revision
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.
If you are calling the Dataflow REST API directly, remove any trailing slashes from the endpoint urls.