Languages
[Edit]
EN

Spring Boot 2 - enable encoded slash support in path segments (/ encoding as %2F, e.g. /path/to%2Fendpoint)

4 points
Created by:
Zeeshan-Peel
850

In this short article, we would like to show how in Spring Boot 2 enable encoded slashes support in path segments.

By default, it is not permitted to use %2F in path segments what was described here and here.

From Tomcat documentation:

PropertyDescription
org.apache.tomcat.util.buf. UDecoder.ALLOW_ENCODED_SLASHIf this is true %2F and %5C will be permitted as path delimiters. If not specified, the default value of false will be used.

Hint: to use %5C in URL it is necessary to enable some additional configuration - check this article.

 

Solution

Edit

It is necessary to set:

In the below, we use used System.setProperty() to set the above flag:

It is necessary to add path match configuration:

See also

Edit
  1. Spring Boot 2 - request mapping with wildcard parameter (/path/**)

  2. Spring Boot 2 - enable encoded backslash support in path segments (\ encoding as %5C, e.g. /path/to%5Cendpoint)

Alternative titles

  1. Spring Boot 2 - allow encoded slash support in path segments
  2. Spring Boot 2 - allow to use %2F in paths
1
Donate to Dirask
Our content is created by volunteers - like Wikipedia. If you think, the things we do are good, donate us. Thanks!
Join to our subscribers to be up to date with content, news and offers.
Native Advertising
🚀
Get your tech brand or product in front of software developers.
For more information Contact us
Dirask - we help you to
solve coding problems.
Ask question.

❤️💻 🙂

Join