类型 异常报告
消息 Failed to convert value of type 'java.lang.String' to required type 'java.util.Date'; nested exception is java.lang.IllegalStateException: Cannot convert value of type 'java.lang.String' to required type 'java.util.Date': no matching editors or conversion strategy found
浏览器中打开 http://localhost:8080/mymvc_war/gdate?date=2088/08/08&date1=2088-08-08
出现以下报错
postman中post提交也有错误:
解决方法
一、在pom.xml的
com.fasterxml.jackson.core jackson-databind2.9.0
二、在SpringMvcConfig中添加注解@EnableWebMvc
就可以啦。
重新刷新Maven,重启程序,提交成功!



