<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
feign.codec.DecodeException: JSON parse error: Can not deserialize value of type java.util.Date from String "2018-03-07 16:18:35": not a valid representation (error: Failed to parse Date value '2018-03-07 16:18:35': Can not parse date "2018-03-07 16:18:35Z": while it seems to fit format 'yyyy-MM-dd'T'HH:mm:ss.SSS'Z'', parsing fails (leniency? null)); nested exception is com.fasterxml.jackson.databind.exc.InvalidFormatException: Can not deserialize value of type java.util.Date from String "2018-03-07 16:18:35": not a valid representation (error: Failed to parse Date value '2018-03-07 16:18:35': Can not parse date "2018-03-07 16:18:35Z": while it seems to fit format 'yyyy-MM-dd'T'HH:mm:ss.SSS'Z'', parsing fails (leniency? null)) at [Source: java.io.PushbackInputStream@4615bc00; line: 1, column: 696] (through reference chain: com.RestfulDataBean["data"]->java.util.ArrayList[0]->com.entity.XxxDto["createTime"]) at feign.SynchronousMethodHandler.decode(SynchronousMethodHandler.java:169) at feign.SynchronousMethodHandler.executeAndDecode(SynchronousMethodHandler.java:133) at feign.SynchronousMethodHandler.invoke(SynchronousMethodHandler.java:76) at feign.ReflectiveFeign$FeignInvocationHandler.invoke(ReflectiveFeign.java:103) at com.sun.proxy.$Proxy138.queryMonitorByTime(Unknown Source)
從異常資訊中我們可以看出,是在AbstractJackson2HttpMessageConverter類中呼叫了readJavaType方法之後拋的異常
一步一步往下深入,我們找到了最關鍵的地方,在DeserializationContext類的_parseDate方法中
執行了df.parse(dateStr)之後拋異常了
public Date parseDate(String dateStr) throws IllegalArgumentException{ try { DateFormat df = getDateFormat(); // 這行程式碼報錯了 return df.parse(dateStr); } catch (ParseException e) { throw new IllegalArgumentException(String.format( "Failed to parse Date value '%s': %s", dateStr, e.getMessage())); } }
DeserializationContext是jackson的一個反序列化的一個上下文,那麼它的DateFormat是從哪來的呢?
我們再來看下getDateFormat的原始碼
protected DateFormat getDateFormat(){ if (_dateFormat != null) { return _dateFormat; } DateFormat df = _config.getDateFormat(); _dateFormat = df = (DateFormat) df.clone(); return df; }
DateFormat又是從MapperConfig而來
我們再看下config.getDateFormat()的原始碼
public final DateFormat getDateFormat() { return _base.getDateFormat(); }
我們知道,SpringMvc就是通過AbstractJackson2HttpMessageConverter類來整合jackson的,該類維護jackson的ObjectMapper,而ObjectMapper又是通過MapperConfig來進行設定的
由此可見,本異常就是因為ObjectMapper中的DateFormat無法對yyyy-MM-dd HH:mm:ss格式的字串進行轉換所導致的
時間屬性新增註解,進行自動轉換。
異常說的值伺服器返回了一個帶有日期的json,日期的形式是字串2018-03-07 16:18:35,jackson無法將該字串轉成一個Date物件,網上查資料,上面說的是jackson只支援以下幾種日期格式:
去掉伺服器端的以下兩個設定,讓日期返回時間戳,結果就沒報錯了
#spring.jackson.date-format=yyyy-MM-dd HH:mm:ss #spring.jackson.time-zone=Asia/Chongqing
由於伺服器端在其他的地方有可能和這裡的設定耦合了,也就是說其他地方有可能要用到的是yyyy-MM-dd HH:mm:ss這一日期格式而不是時間戳的格式,所以這個設定肯定是不能修改的。
jackson竟然不支援yyyy-MM-dd HH:mm:ss的這種格式,肯定很不爽啦,所以下面就要開始來研究怎麼讓jackson支援這種格式了。
要讓jackson支援這種格式,那麼就必須修改ObjectMapper中的DateFormat,因為在ObjectMapper中,DateFormat的預設實現類是StdDateFormat,StdDateFormat也就只相容了我們上述所說的幾種格式
首先我們先使用裝飾模式來建立一個支援yyyy-MM-dd HH:mm:ss格式的DateFormat如下
import java.text.DateFormat;import java.text.FieldPosition; import java.text.ParseException;import java.text.ParsePosition; import java.text.SimpleDateFormat;import java.util.Date; public class MyDateFormat extends DateFormat { private DateFormat dateFormat; private SimpleDateFormat format1 = new SimpleDateFormat("yyy-MM-dd HH:mm:ss"); public MyDateFormat(DateFormat dateFormat) { this.dateFormat = dateFormat; } @Override public StringBuffer format(Date date, StringBuffer toAppendTo, FieldPosition fieldPosition) { return dateFormat.format(date, toAppendTo, fieldPosition); } @Override public Date parse(String source, ParsePosition pos) { Date date = null; try { date = format1.parse(source, pos); } catch (Exception e) { date = dateFormat.parse(source, pos); } return date; } // 主要還是裝飾這個方法 @Override public Date parse(String source) throws ParseException { Date date = null; try { // 先按我的規則來 date = format1.parse(source); } catch (Exception e) { // 不行,那就按原先的規則吧 date = dateFormat.parse(source); } return date; } // 這裡裝飾clone方法的原因是因為clone方法在jackson中也有用到 @Override public Object clone() { Object format = dateFormat.clone(); return new MyDateFormat((DateFormat) format); } }
DateFormat有了,接下來的任務就是讓ObjectMapper使用我的這個DateFormat了
在config類中定義如下(本案例基於springboot)
@Configuration public class WebConfig { @Autowired private Jackson2ObjectMapperBuilder jackson2ObjectMapperBuilder; @Bean public MappingJackson2HttpMessageConverter MappingJsonpHttpMessageConverter() { ObjectMapper mapper = jackson2ObjectMapperBuilder.build(); // ObjectMapper為了保障執行緒安全性,裡面的設定類都是一個不可變的物件 // 所以這裡的setDateFormat的內部原理其實是建立了一個新的設定類 DateFormat dateFormat = mapper.getDateFormat(); mapper.setDateFormat(new MyDateFormat(dateFormat)); MappingJackson2HttpMessageConverter mappingJsonpHttpMessageConverter = new MappingJackson2HttpMessageConverter( mapper); return mappingJsonpHttpMessageConverter; } }
設定了上述程式碼之後,問題成功解決。
為什麼往spring容器中注入MappingJackson2HttpMessageConverter,springMvc就會用這個Converter呢?
檢視springboot的原始碼如下:
@Configurationclass JacksonHttpMessageConvertersConfiguration { @Configuration @ConditionalOnClass(ObjectMapper.class) @ConditionalOnBean(ObjectMapper.class) @ConditionalOnProperty(name = HttpMessageConvertersAutoConfiguration.PREFERRED_MAPPER_PROPERTY, havingValue = "jackson", matchIfMissing = true) protected static class MappingJackson2HttpMessageConverterConfiguration { @Bean @ConditionalOnMissingBean(value = MappingJackson2HttpMessageConverter.class, ignoredType = { "org.springframework.hateoas.mvc.TypeConstrainedMappingJackson2HttpMessageConverter", "org.springframework.data.rest.webmvc.alps.AlpsJsonHttpMessageConverter" }) public MappingJackson2HttpMessageConverter mappingJackson2HttpMessageConverter( ObjectMapper objectMapper) { return new MappingJackson2HttpMessageConverter(objectMapper); } }
預設設定為,當spring容器中沒有MappingJackson2HttpMessageConverter這個範例的時候才會被建立
springboot的思想是約定優於設定,也就是說,springboot預設幫我們配好了spring mvc的Converter,如果我們沒有自定義Converter的話,那麼框架就會幫我們建立一個,如果我們有自定義的話,那麼springboot就直接使用我們所註冊的bean進行繫結
以上為個人經驗,希望能給大家一個參考,也希望大家多多支援it145.com。
相關文章
<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
综合看Anker超能充系列的性价比很高,并且与不仅和iPhone12/苹果<em>Mac</em>Book很配,而且适合多设备充电需求的日常使用或差旅场景,不管是安卓还是Switch同样也能用得上它,希望这次分享能给准备购入充电器的小伙伴们有所
2021-06-01 09:31:42
除了L4WUDU与吴亦凡已经多次共事,成为了明面上的厂牌成员,吴亦凡还曾带领20XXCLUB全队参加2020年的一场音乐节,这也是20XXCLUB首次全员合照,王嗣尧Turbo、陈彦希Regi、<em>Mac</em> Ova Seas、林渝植等人全部出场。然而让
2021-06-01 09:31:34
目前应用IPFS的机构:1 谷歌<em>浏览器</em>支持IPFS分布式协议 2 万维网 (历史档案博物馆)数据库 3 火狐<em>浏览器</em>支持 IPFS分布式协议 4 EOS 等数字货币数据存储 5 美国国会图书馆,历史资料永久保存在 IPFS 6 加
2021-06-01 09:31:24
开拓者的车机是兼容苹果和<em>安卓</em>,虽然我不怎么用,但确实兼顾了我家人的很多需求:副驾的门板还配有解锁开关,有的时候老婆开车,下车的时候偶尔会忘记解锁,我在副驾驶可以自己开门:第二排设计很好,不仅配置了一个很大的
2021-06-01 09:30:48
不仅是<em>安卓</em>手机,苹果手机的降价力度也是前所未有了,iPhone12也“跳水价”了,发布价是6799元,如今已经跌至5308元,降价幅度超过1400元,最新定价确认了。iPhone12是苹果首款5G手机,同时也是全球首款5nm芯片的智能机,它
2021-06-01 09:30:45