springboot url传参直接用对象接收时用什么注解能对属性做类型转换包括日期和自定义枚举类型Failed to convert property value of type javalangString to required type javautilDate for property endTime;
在Spring Boot中,可以使用@DateTimeFormat注解来对日期类型进行类型转换,例如:
public class MyRequest {
@DateTimeFormat(pattern = "yyyy-MM-dd")
private Date endTime;
// other properties and methods
}
这样,当Spring Boot接收到以"yyyy-MM-dd"格式传递的日期字符串时,会自动将其转换为Date类型。
对于自定义枚举类型,可以使用@EnumFormat注解来进行类型转换,例如:
public class MyRequest {
@EnumFormat(WeekdayEnum.class)
private WeekdayEnum weekday;
// other properties and methods
}
这里的WeekdayEnum是自定义的枚举类型,@EnumFormat注解会自动将传递的字符串转换为对应的枚举值。需要注意的是,自定义枚举类型需要实现EnumConverter接口
原文地址: https://www.cveoy.top/t/topic/huz1 著作权归作者所有。请勿转载和采集!