DB中存储的是时间格式,但是使用@RestController返回的JSON数据时,时间格式转换为了时间戳的形式,现改为直接返回的是时间格式。
解决前:
解决后:
解决方式:
在yml文件中加入
spring:
jackson:
date-format: yyyy-MM-dd HH:mm:ss
在properties文件中
spring.jackson.date-format=yyyy-MM-dd HH:mm:ss
DB中存储的是时间格式,但是使用@RestController返回的JSON数据时,时间格式转换为了时间戳的形式,现改为直接返回的是时间格式。
解决前:
解决后:
解决方式:
在yml文件中加入
spring:
jackson:
date-format: yyyy-MM-dd HH:mm:ss
在properties文件中
spring.jackson.date-format=yyyy-MM-dd HH:mm:ss