springboot-Date日期时间问题

spring.mvc.date-format=yyyy-MM-dd

spring.jackson.date-format=yyyy-MM-dd 

spring.jackson.time-zone=GMT+8

 

@Data

public class User {

    private Integer id;

    private Date birthday;

}

 

@GetMapping("/test")

public User test(User user){

    return user;

}

 

访问: localhost:8080?id=1&birthday=2013-09-23

 

posted @ 2017-03-17 12:15  Emyin  阅读(474)  评论(0编辑  收藏  举报