Skip to content

fix bad path exception

Sherman Yang requested to merge bad-path-exception into master

Spring Boot throws the RequestRejectedException if a request path contains double slashes (//) and the unit service currently returns internal server error (500). This MR adds a new filter to intercept the RequestRejectedException and convert it into not found(404) error.

Merge request reports