原本能夠用HttpPutFormContentFilter這個類去解決的,可是在springboot2中 這類是deprecated 過時的。spring
經查詢,被替代的類是FormContentFilterspringboot
因此解決辦法以下:spa
@Configuration
@Slf4j
public class WebConfig extends WebMvcConfigurationSupport {
@Bean
public FormContentFilter formContentFilter() {
return new FormContentFilter();
}
}
複製代碼
通過上面的配置,就能夠解決問題。code