springboot之Date格式化

Posted chendeming

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了springboot之Date格式化相关的知识,希望对你有一定的参考价值。

问题场景:

  在springboot应用中,@RestController层注解的json默认序列化中,日期格式默认为:2018-06-17T07:24:07.430+0000。

  日常需求中,往往需要将日期转化为

修改方法:

  方法一:
    在apllication.properties加入下面配置
    #时间戳统一转换
    spring.jackson.date-format=yyyy-MM-dd HH:mm:ss

    #这个是时区,一定要加,否则会默认为格林尼治时间,即少8小时
    spring.jackson.time-zone=GMT+8
  
  方法二:
    在bean对象上加上
    @JsonFormat(timezone = "GMT+8", pattern = "yyyyMMddHHmmss")
    private Date createTime;
  

 

示例代码

  controller层

   /**
     * <p>一个返回json的例子</p>
     * */
    @RequestMapping("/json")
    public DemoVO getDemo(){
        DemoVO demoVO = new DemoVO();
        demoVO.setDemoName("demoName");
        demoVO.setDemoValue("测试");
        demoVO.setCurDate(new Date());
        return demoVO;
    }

  application.properties配置文件

spring.jackson.date-format=yyyy-MM-dd HH:mm:ss
spring.jackson.time-zone=GMT+8

 

  DemoVO.java文件

/**
 * @Description 一个样例值对象
 * @Author chendeming
 * @Date 2018/6/17 下午1:50
 * @Version 1.0
 **/
public class DemoVO {

    private String DemoName;
    private String DemoValue;
//    @JsonFormat(timezone = "GMT+8", pattern = "yyyyMMddHHmmss")//这里放开,就按这里的格式走
    private Date curDate;

    public String getDemoName() {
        return DemoName;
    }

    public void setDemoName(String demoName) {
        DemoName = demoName;
    }

    public String getDemoValue() {
        return DemoValue;
    }

    public void setDemoValue(String demoValue) {
        DemoValue = demoValue;
    }

    public Date getCurDate() {
        return curDate;
    }

    public void setCurDate(Date curDate) {
        this.curDate = curDate;
    }

    @Override
    public String toString() {
        return "DemoVO{" +
                "DemoName=‘" + DemoName + ‘‘‘ +
                ", DemoValue=‘" + DemoValue + ‘‘‘ +
                ", curDate=" + curDate +
                ‘}‘;
    }
}

 

 更多格式化方法:https://blog.csdn.net/ldj0816/article/details/52681153











以上是关于springboot之Date格式化的主要内容,如果未能解决你的问题,请参考以下文章

SpringBoot之日期时间格式化

springboot之jackson的两种配置方式

springboot对于实体类date类型格式化

bootspring???????????????Date??????????????????????????????????????????????????????????????????(代码片段

带有神秘附加字符的 Javascript Date getTime() 代码片段

SpringBoot+MyBatis Plus对Map中Date格式转换的处理