关于user中的Json演绎法
test.html中的 用户生日:<input th:value="${user.birthday}"/> 这个页面上为什么日期格式没有经过转换呢 在user.java中
@JsonFormat(pattern="yyyy-MM-dd hh:mm:ss a", locale="zh", timezone="GMT+8")
private Date birthday;
这已经有格式化转换啊 为什么页面中如果需要日期那种格式还需要在页面中自己转换呢
test.html中的 用户生日:<input th:value="${user.birthday}"/> 这个页面上为什么日期格式没有经过转换呢 在user.java中
@JsonFormat(pattern="yyyy-MM-dd hh:mm:ss a", locale="zh", timezone="GMT+8")
private Date birthday;
这已经有格式化转换啊 为什么页面中如果需要日期那种格式还需要在页面中自己转换呢
2018-08-12
举报