20 lines
599 B
Java
20 lines
599 B
Java
package cn.keking.config;
|
||
|
||
import org.springframework.context.annotation.Bean;
|
||
import org.springframework.context.annotation.Configuration;
|
||
|
||
/**
|
||
* @author chenjh
|
||
* @since 2020/5/18 13:41
|
||
*/
|
||
@Configuration
|
||
public class RFCConfig {
|
||
|
||
@Bean
|
||
public Boolean setRequestTargetAllow() {
|
||
// RFC 7230,RFC 3986规范不允许url相关特殊字符,手动指定Tomcat url允许特殊符号, 如{}做入参,其他符号按需添加。见tomcat的HttpParser源码。
|
||
System.setProperty("tomcat.util.http.parser.HttpParser.requestTargetAllow", "|{}");
|
||
return true;
|
||
}
|
||
}
|