Failed to convert value of type 'java.lang.String' to required type 'java.util.Date';
今天小编写新项目向数据库插入数据时遇到了一个小阻碍,当前端form表单提交数据时后端controller就报了标题的错,原因是前端提交到后端的数据时string类型的,而实体类中需要的是date型的数据,所以报了这个错误~ajax代码:$.ajax({type:'POST',url:'/zouni',data:$("#myForm").serialize(),dataType:'json',suc