日期和数字的自定义格式注解
@DateTimeFormat
@DateTimeFormat(iso = DATE)//匹配格式为yyyy-MM-dd
private Date birthday;
@DateTimeFormat(pattern = "yyyy/MM/dd")//自定义格式
private Date birthday;
@NumberFormat
@NumberFormat(style = CURRENCY)//¥
private Integer money;
@NumberFormat(pattern = "¥#")//自定义格式,输入可带¥
private Integer money;
我成功因为我志在成功
浙公网安备 33010602011771号