天天看点

Spring Boot Restful 请求方式 PUT 请求报 400 错误

  • 添加支持

    PUT

    请求
@Configuration
public class ServletContextConfig extends WebMvcConfigurationSupport {
	@Bean
    public FormContentFilter httpPutFormContentFilter() {
        return new FormContentFilter();
    }
}
           

Java使用PUT提交请求错误码400及415解决方案