springboot 2.0 配置 spring.jackson.date-format 不生效

問題:application.properties中的以下配置不生效,返回時間戳spring

spring.jackson.date-format=yyyy-MM-dd HH:mm:ss
緣由分析:springboot

       攔截器繼承的 WebMvcConfigurationSupport !app

       之前是用 WebMvcConfigurerAdapter ,springboot 2.0 建議使用 WebMvcConfigurationSupport 。可是在添加攔截器並繼承 WebMvcConfigurationSupport 後會覆蓋@EnableAutoConfiguration關於WebMvcAutoConfiguration的配置!從而致使全部的Date返回都變成時間戳!.net

解決方法:orm

       實現 WebMvcConfigurer。blog

       將:繼承

extends WebMvcConfigurationSupport
       改成:io

implements WebMvcConfigurer
引用:form

SpringBoot攔截器WebMvcConfigurationSupport致使date-format失效配置

@EnableWebMvc,WebMvcConfigurationSupport,WebMvcConfigurer和WebMvcConfigurationAdapter區別 ---------------------  做者:2yung  來源:CSDN  原文:https://blog.csdn.net/qq_30912043/article/details/80967352  版權聲明:本文爲博主原創文章,轉載請附上博文連接!

相關文章
相關標籤/搜索