您好,登錄后才能下訂單哦!
經測試發現將對象轉JSON時,日期類型的返回的值總是比數據庫中的值少1
如 數據庫的日期為:2017-12-12,轉JSON返回時將變成了2017-12-1。解決方法1:
在對象POJO的get方法中使用@JsonFormat(pattern="yyyy-MM-dd",timezone="GMT+8")
br/>解決方法1:
在對象POJO的get方法中使用@JsonFormat(pattern="yyyy-MM-dd",timezone="GMT+8")/*timeZone="GMT+8"加上時區 */
@JsonFormat(pattern = "yyyy-MM-dd",timezone="GMT+8")
public Date getShenqrq() {
return shenqrq;
}
public void setShenqrq(Date shenqrq) {
this.shenqrq = shenqrq;
}
解決方法2:
<mvc:annotation-driven>
<mvc:message-converters>
<bean
class="org.springframework.http.converter.json.MappingJackson2HttpMessageConverter">
<property name="objectMapper">
<bean class="com.fasterxml.jackson.databind.ObjectMapper">
<!-- 處理responseBody 里面日期類型 -->
<property name="dateFormat">
<bean class="java.text.SimpleDateFormat">
<constructor-arg type="java.lang.String" value="yyyy-MM-dd HH:mm:ss" />
</bean>
</property>
<!-- 時區指定 -->
<property name="timeZone" value="GMT+8" />
<!-- 為null字段時不顯示 -->
<property name="serializationInclusion">
<value type="com.fasterxml.jackson.annotation.JsonInclude.Include">NON_NULL</value>
</property>
</bean>
</property>
</bean>
</mvc:message-converters>
</mvc:annotation-driven>
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。