2019-01-09 17:39:10.121 [http-nio-8085-exec-10] WARN o.s.w.s.m.support.DefaultHandlerExceptionResolver -
Resolved exception caused by Handler execution: org.springframework.http.converter.HttpMessageNotReadableException:
Required request body is missing: public com.alibaba.fastjson.JSONObject com.ai.controller.LoginController.userLogin(
com.alibaba.fastjson.JSONObject) throws java.lang.Exception
解决:增加required=false
public JSONObject userLogin(@RequestBody(required = false) JSONObject loginData)