使用嵌入式Tomcat处理基于Spring Boot的REST服务我想限制任何HTTP方法(POST,PUT,GET,...)的请求体的大小。
我知道连接器的maxPostSize
属性。但是这个属性似乎只限制POST请求。另一种可能性是IMHO实现javax.servlet.Filter
并检查Content-Length标头的值。
还有其他方法可以达到这个目的吗?
答案 0 :(得分:1)
您可以在application.properties中set the multipart.maxRequestSize property。 default is 10Mb。how to write custom filter。