警告: Failed to bind request element: org.springframework.web.method.annotation.MethodArgumentTypeMismatchException: Failed to convert value of type 'java.lang.String' to required type 'java.util.Date'; nested exception is org.springframework.core.convert.ConversionFailedException: Failed to convert from type [java.lang.String] to type [java.util.Date] for value '2019-06-18'; nested exception is java.lang.IllegalArgumentException
错误代码
@RequestMapping("/test2")
public void test2( String name, int age, Date birth){
System.out.println(name);
System.out.println(age);
System.out.println(birth);
}