I have this mapping:
@GetMapping("/{example}") public void example(@PathVariable String example) { ... }
The following URLs match and delete this method:
These are not (I get 404):
Why not?
How can I match URLs containing these encoded characters?
Change I looked at PathMatchConfigurer but can't see how this behavior is explained.
source share