json自動轉換成bean物件時Timestamp的問題!
阿新 • • 發佈:2019-01-10
在哪個欄位的set方法中加入相關轉化即可。
public void setDate(String date){
System.out.println("時間轉化問題");
if(null!=date&&StringUtils.isNotBlank(date)){
try {
this.date = new Timestamp(DateTools.strToDateByYmdHms(date).getTime());
} catch (Exception e) {
System.out.println("時間轉化異常" );
e.printStackTrace();
}
}else{
try {
this.date = null;
} catch (Exception e) {
System.out.println("時間轉化異常");
// TODO Auto-generated catch block
e.printStackTrace();
}
}
System.out.println("轉化後的日期" +this.date);
}