天天看點

Spring Boot Restful 請求方式 PUT 請求報 400 錯誤

  • 添加支援

    PUT

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

Java使用PUT送出請求錯誤碼400及415解決方案