springboot 使用经验
2021-06-16 22:04
标签:res 时间格式化 pat enter 日期 简单的 dia 获取 定时 目录 1. 返回时间格式化问题 2. springboot 中获取属性 3. 一返回时间格式化问题 在Spring Boot项目中,使用@RestController注解,返回的java对象中若含有date类型的属性,则默认输出为TIMESTAMP时间戳格式 ,如下所示: 解决方案有多种,这里只记录本人觉得最简单的一种。一般我们的日期显示格式为:yyyy-MM-dd HH:mm:ss,所以我们可以在配置文件中进行全局配置。 在application.properties配置文件增加以下配置:: 第一行指定date输出格式为yyyy-MM-dd HH:mm:ss; 第二行指定时区,解决8小时的时间差问题。 运行结果: ========================================================================================================================== 二 springboot 中获取属性 ========================================================================================================================== 三 springboot 使用经验 标签:res 时间格式化 pat enter 日期 简单的 dia 获取 定时 原文地址:https://www.cnblogs.com/xingzc/p/9724299.html解决方案
spring.jackson.date-format=yyyy-MM-dd HH:mm:ss
spring.jackson.time-zone=GMT+8
/**
* 图片路径,全局变量处获取
*/
@Value("${export.diagram.path}")
private String exportDiagramPath;