1. 程式人生 > >springMVC實體類時間格式化

springMVC實體類時間格式化

使用JsonFormat註解

@JsonFormat(pattern="yyyy-MM-dd HH:mm:ss",timezone = "GMT+8") 
private java.util.Date sendDate;

使用mybatis,資料庫MySQL
<result column="send_date" property="sendDate" jdbcType="TIMESTAMP" />

其他來自網路的其他解決方法:http://blog.csdn.net/chenleixing/article/details/45190371