I am using Spring Boot application. When I do post request as below, I can able to pass content size of 5MB. As per the documentation here, default is 2MB. Let me the default size of post content.
Following are the specifications:
- Tomcat server (Default)
- WebMVC
- Embedded container
Request url: http://localhost:8080/store
Request body:
{
"value": "test...." (length=5MB)
}