前台取到的日期类型为UTC,"yyyy-MM-dd'T'HH:mm:ss.SSS",后台接收报错如下: org.springframework.http.converter.HttpMessageNotReadableException: JSON parse error: Cannot deserialize value of type `java.util.Date` from String "2019-08-10T02:37:54.770Z": not a v…
参数传递: 1 原生方式:使用Servlet API , request.getParameter("id"); 2 直接将请求参数作为Controller中的形参: public String itemEdit(Model model , Integer id),要求形参名和对应表单标签的name属性相同 3 使用@RequestParam获取参数: public String itemEdit(Model model ,@RequestParam(value="id&…