SpringBoot post 请求大小限制
当 post 请求里面的数据量太大了的时候,API虽然能够接收到请求,但是header 和 body里面的数据都为null。SpringBoot 内置 Tomcat 默认的 post 请求大小是 2M。官方参数配置解释:https://docs.spring.io/spring-boot/docs/current/reference/html/application-properties.html
·
当 post 请求里面的数据量太大了的时候,API虽然能够接收到请求,但是header 和 body里面的数据都为null。
SpringBoot 内置 Tomcat 默认的 post 请求大小是 2M。
官方参数配置解释:
解决方案:
server:
tomcat:
max-http-form-post-size: -1
更多推荐
已为社区贡献12条内容
所有评论(0)