Я использую Spring MVC @RequestParam, чтобы принять форму.Я sumbit форма, которая содержит строку json, и когда строка json больше 1M, это
{
"timestamp":1556663224346,
"status":400,
"error":"Bad Request",
"exception":"org.springframework.web.bind.MissingServletRequestParameterException",
"message":"Required String parameter 'corpId' is not present",
"path":"/api/test"
}
@RequestMapping(value = "/test", method = RequestMethod.POST, produces = { "application/json;charset=UTF-8" })
@ResponseBody
public String test(
@ApiParam(required = true, value = "json string") @RequestParam(required = true) String content)
Я думаю, что это из-за HttpMessageConvert не может преобразовать его или этоесть предел для сериализации Json.