详解Java关于时间格式化的方法
程序员文章站
2022-06-09 21:37:39
一般从数据库获取的时间或日期时间格式化为date或者datetime,为了方便前端渲染,api接口返回的时候需要对日期进行格式化转换,通常会用到simpledateformat工具处理。simpled...
一般从数据库获取的时间或日期时间格式化为date或者datetime,为了方便前端渲染,api接口返回的时候需要对日期进行格式化转换,通常会用到 simpledateformat
工具处理。
simpledateformat dateformat = new simpledateformat("yyyy-mm-dd"); string time = dateformat.format(new date());
如果一个dto类里面有很多关于时间字段需要格式化,就会降低开发效率,产生很多重复臃肿的代码。并且有的项目用date,有的项目会用localdatetime
而此时如果能将时间格式统一配置,就可以省下更多时间专注于业务开发了。
接下来介绍springboot中常用的对时间或日期处理的方式
一、@jsonformat 注解
jsonformat注解是jackson包里面的一个注解,需要加上依赖
<!-- https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-core --> <dependency> <groupid>com.fasterxml.jackson.core</groupid> <artifactid>jackson-core</artifactid> <version>2.11.2</version> </dependency>
@jsonformat注解需要用在实体类的时间字段上,对应的字段才能进行格式化。
import com.fasterxml.jackson.annotation.jsonformat; import lombok.data; import java.time.localdatetime; import java.util.date; @data public class testdto { @jsonformat(locale = "zh", timezone = "gmt+8", pattern = "yyyy-mm-dd") private localdatetime createtime; @jsonformat(locale = "zh", timezone = "gmt+8", pattern = "yyyy-mm-dd hh:mm:ss") private date updatetime; }
public testdto get(){ testdto testdto = new testdto(); testdto.setlocaldatetime(localdatetime.now()); testdto.setdate(new date()); return testdto; }
如下所示
还有一种可以全局定义的
二、@jsoncomponent 注解 (全局)
配置类
@jsoncomponent public class dateformatconfig { @value("${spring.jackson.date-format:yyyy-mm-dd hh:mm:ss}") private string pattern; // date 类型全局时间格式化 @bean public jackson2objectmapperbuildercustomizer jackson2objectmapperbuilder() { return builder -> { timezone tz = timezone.gettimezone("utc"); dateformat df = new simpledateformat(pattern); df.settimezone(tz); builder.failonemptybeans(false) .failonunknownproperties(false) .featurestodisable(serializationfeature.write_dates_as_timestamps) .dateformat(df); }; } // localdate 类型全局时间格式化 @bean public localdatetimeserializer localdatetimedeserializer() { return new localdatetimeserializer(datetimeformatter.ofpattern(pattern)); } @bean public jackson2objectmapperbuildercustomizer jackson2objectmapperbuildercustomizer() { return builder -> builder.serializerbytype(localdatetime.class, localdatetimedeserializer()); } }
这样我们就不用加注解了,也可以实现格式化
@jsoncomponent public class dateformatconfig { @value("${spring.jackson.date-format:yyyy-mm-dd hh:mm:ss}") private string pattern; // date 类型全局时间格式化 @bean public jackson2objectmapperbuildercustomizer jackson2objectmapperbuilder() { return builder -> { timezone tz = timezone.gettimezone("utc"); dateformat df = new simpledateformat(pattern); df.settimezone(tz); builder.failonemptybeans(false) .failonunknownproperties(false) .featurestodisable(serializationfeature.write_dates_as_timestamps) .dateformat(df); }; } // localdate 类型全局时间格式化 @bean public localdatetimeserializer localdatetimedeserializer() { return new localdatetimeserializer(datetimeformatter.ofpattern(pattern)); } @bean public jackson2objectmapperbuildercustomizer jackson2objectmapperbuildercustomizer() { return builder -> builder.serializerbytype(localdatetime.class, localdatetimedeserializer()); } }
到此这篇关于详解java关于时间格式化的方法的文章就介绍到这了,更多相关java 时间格式化内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!