美文网首页
SpringBoot 中接收和返回日期的处理办法

SpringBoot 中接收和返回日期的处理办法

作者: wGray | 来源:发表于2017-08-28 13:40 被阅读0次

    1、接收前台传入的日期:前台直接传入字符串 如: 2017-08-01 12:00:00

    直接在需要接收到属性上添加注解

    @DateTimeFormat(pattern ="yyyy-MM-dd HH:mm:ss")

    2、返回给前台的数据中有日期,未经处理会直接返回一个 long 值

    一种方法是在配置文件中添加

    spring.jackson.date-format=com.demo.CustomDateFormat

    类继承自SimpleDateFormat,代码很简单

    public classCustomDateFormat extends SimpleDateFormat {

             public CustomDateFormat(){

                        super("yyyy-MM-dd HH:mm:ss");

             }

    }

    这里还有一种更简单的方式,在需要处理的字段上

    @JsonFormat(pattern ="yyyy-MM-dd HH:mm:ss")

    相关文章

      网友评论

          本文标题:SpringBoot 中接收和返回日期的处理办法

          本文链接:https://www.haomeiwen.com/subject/rytgdxtx.html