标签: spring-boot tomcat post
我必须限制对sprinboot服务器的正文请求。
我试图在Application.yml中的类路径中插入以下行:
server: port: 8188 tomcat.max-threads: 500 tomcat.maxPostSize: 0.2 tomcat.max-http-post-size: 0.2
我希望无法将大于0.2 MB的文件发送到我的服务器。虽然,如果我通过邮寄发送了一个大小为8.95MB的文件,服务器将对其进行处理而不会产生任何抱怨。