2020
10-10
10-10
SpringBoot http post请求数据大小设置操作
背景:使用httppost请求方式的接口,使用request.getParameter("XXX");的方法获取参数的值,当数据量超过几百k的时候,接口接收不到数据或者接收为null。@RequestMapping(value="/rcv",method=RequestMethod.POST)publicResInfo<String>pullApi(HttpServletRequestrequest){Stringchannel=request.getParameter("channel");}在application.properties里添加:spring.http.multipart.max-file-size=-1spring.http....
继续阅读 >