Can not deserialize instance of java.lang.Integer out of START_ARRAY token
今天在测试时Spring出现Can not deserialize instance of java.lang.Integer out of START_ARRAY token的错误
主要的问题原因是类型不匹配。
你需要检查前端上传的类型和后台定义的类型是否相同。
比如我的后台需要接受的是Integer类型,但是在前端却传的是String类型,因此报错。
解决方法是:前端把String类型转为Int
var yearSelect =parseInt($("#yearSelect").combobox("getValues"));