近期有个需求要求Controller可以处理URL中有%2F
的请求,比如:
@RestController
@RequestMapping("/hello")
public class HelloController {
@GetMapping("/name/{path}")
@ResponseBody
public String test(@PathVariable String path) {
return path;
}
}
请求URL可以是:http://localhost:8080/hello/name/test%2F123
原始的Spring也是不支持路径中有%2F
的情况的,直接请求页面会直接报错,但是这种情况已经能搜到很多处理方式了,我亲测最简单且有效的方法就是在Spring启动类中,增加如下语句允许SLASH出现。
public static void main( String[] args ) {
System.setProperty("org.apache.tomcat.util.buf.UDecoder.ALLOW_ENCODED_SLASH", "true");
SpringApplication.run(App.class, args);
}
解决Spring的问题之后,如果路径中还是有%2F
,访问URL会出现如下的错误:
Whitelabel Error Page
This application has no explicit mapping for /error, so you are seeing this as a fallback.
Sun Mar 17 01:19:43 CST 2024
There was an unexpected error (type=Internal Server Error, status=500).
The requestURI cannot contain encoded slash. Got /xxx/xxx/test%2F123
这个错误就是Spring Security抛出的,如果观察控制台,也可以看到响应的堆栈打印:
org.springframework.security.web.firewall.RequestRejectedException: The requestURI cannot contain encoded slash. Got /security/name/test%2F123
at org.springframework.security.web.firewall.DefaultHttpFirewall.getFirewalledRequest(DefaultHttpFirewall.java:62) ~[spring-security-web-4.2.9.R
因此正式进入Spring Security的处理环节,这里我给出了三种方案,分别应对安全程度从低到高的场景,当然DIY程度也是从小到大,如果是自己的项目,只是单纯的想消除这个讨厌的requestURI cannot contain encoded slash
,建议使用方式一就行。
方式一:全局处理%2F存在
这个方案其实有博主已经提到了:https://www.jb51.net/program/290154s0s.htm
但是我按这个操作之后发现还是不生效,后来还是在Stack Overflow上才发现这里只是新建了Bean,没有注入,那当然毛用没有了。。
在继承了WebMvcConfigurer
的WebMvcConfig
写入如下代码,这里如果不配置的话,后面即使允许slash也会404,应该是Spring把%2F
转换为/
所以不匹配Controller,方式三就不用这步了。
import org.springframework.context.annotation.Configuration;
import org.springframework.format.FormatterRegistry;
import org.springframework.http.converter.HttpMessageConverter;
import org.springframework.validation.MessageCodesResolver;
import org.springframework.validation.Validator;
import org.springframework.web.method.support.HandlerMethodArgumentResolver;
import org.springframework.web.method.support.HandlerMethodReturnValueHandler;
import org.springframework.web.servlet.HandlerExceptionResolver;
import org.springframework.web.servlet.config.annotation.*;
import org.springframework.web.util.UrlPathHelper;
import java.util.List;
@Configuration
public class WebMvcConfig implements WebMvcConfigurer {
@Override
public void configurePathMatch(PathMatchConfigurer configurer) {
UrlPathHelper urlPathHelper = new UrlPathHelper();
urlPathHelper.setUrlDecode(false);
configurer