springboot日期格式化及时差问题分析

Gitana ·
更新时间:2024-11-10
· 1243 次阅读

目录

前言

一、mysql中日期字段的正确设置

二、日期格式化,时差

1. 日期字段返回格式不正确–方案一

2.日期字段返回格式不正确–方案二

二、日期无法自动填充

总结

提示:文章写完后,目录可以自动生成,如何生成可参考右边的帮助文档

前言

随着mysql8.0的问世,里面确实增加了很多功能,例如之前我发表的文章,数据库层面的递归查询等;不过也随之而来带来了一些不兼容的问题,比如group by 报错,还有就是日期时差问题;

一、mysql中日期字段的正确设置 create_time timestamp default CURRENT_TIMESTAMP not null comment '创建时间', update_time timestamp default CURRENT_TIMESTAMP not null on update CURRENT_TIMESTAMP comment '修改时间'

创建时间会自动获取当前时间
修改数据的时候,会自动更新 修改时间,免去了每次程序都要设置的麻烦

二、日期格式化,时差 1. 日期字段返回格式不正确–方案一

例如一个实体中内容如下

@Data public class AAA{ //创建时间 private Date createTime; //修改时间 private Date updateTime; }

这样的话,返回的日期格式就错误的,其次也会导致时间会早于数据库的真正时间八小时。我们可以有两种选择,直接对当前字段设置日期格式

@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")//取日期时使用 @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")//存日期时使用

也就是这样

@Data public class AAA{ //创建时间 @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")//取日期时使用 @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")//存日期时使用 private Date createTime; //修改时间 @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")//取日期时使用 @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")//存日期时使用 private Date updateTime; }

是不是很烦呀每次都要对每个实体类中的每个日期字段都添加

2.日期字段返回格式不正确–方案二

全局设置日期格式化的格式,并且全局声名所有日期 的 补差 八小时,设置yml即可

spring: profiles: active: dev jackson: date-format: yyyy-MM-dd HH:mm:ss time-zone: GMT+8 二、日期无法自动填充

由于我已经设置了创建时间的自动填充,和修改时间的自动修改,在数据库层面已经没有问题了,但是当我用mybatis的时候,由于insertselective 等的字段非空判断,导致就不会生成创建时间和修改时间;咋搞?

对于次问题,我们通过拦截器,全局设置自动填充日期等统一信息,还可以有创建人,修改人等;

1. mybatis-plus

由于mp提供了注解,我们可以通过设置一个注解就可以搞定填充问题

@TableField(fill = FieldFill.INSERT) private Date createTime; @TableField(fill = FieldFill.INSERT_UPDATE) private Date updateTime;

2. mybatis 只能靠自己了

import lombok.extern.slf4j.Slf4j; import org.apache.ibatis.executor.Executor; import org.apache.ibatis.mapping.MappedStatement; import org.apache.ibatis.mapping.SqlCommandType; import org.apache.ibatis.plugin.*; import org.springframework.stereotype.Component; import java.lang.reflect.Field; import java.util.*; /** * mybatis 拦截器字段自动填充 **/ @Slf4j @Component @Intercepts({ @Signature(type = Executor.class, method = "update", args = { MappedStatement.class, Object.class }) }) public class MybatisInterceptor implements Interceptor { @Override public Object intercept(Invocation invocation) throws Throwable { MappedStatement mappedStatement = (MappedStatement) invocation.getArgs()[0]; log.debug("------sqlId------" + mappedStatement.getId()); // sql类型:insert、update、select、delete SqlCommandType sqlCommandType = mappedStatement.getSqlCommandType(); Object parameter = invocation.getArgs()[1]; log.debug("------sqlCommandType------" + sqlCommandType); if (parameter == null) { return invocation.proceed(); } // 当sql为新增或更新类型时,自动填充操作人相关信息 if (SqlCommandType.INSERT == sqlCommandType) { Field[] fields = getAllFields(parameter); for (Field field : fields) { try { //注入创建时间 if ("createTime".equals(field.getName())) { field.setAccessible(true); field.set(parameter, new Date()); field.setAccessible(false); } //注入修改时间 if ("updateTime".equals(field.getName())) { field.setAccessible(true); field.set(parameter, new Date()); field.setAccessible(false); } } catch (Exception e) { log.error("failed to insert data, exception = ", e); } } } if (SqlCommandType.UPDATE == sqlCommandType) { Field[] fields = getAllFields(parameter); for (Field field : fields) { try { if ("updateTime".equals(field.getName())) { field.setAccessible(true); field.set(parameter, new Date()); field.setAccessible(false); } } catch (Exception e) { log.error("failed to update data, exception = ", e); } } } return invocation.proceed(); } @Override public Object plugin(Object target) { return Plugin.wrap(target, this); } @Override public void setProperties(Properties properties) { // TODO Auto-generated method stub } /** * 获取类的所有属性,包括父类 * * @param object * @return */ private Field[] getAllFields(Object object) { Class<?> clazz = object.getClass(); List<Field> fieldList = new ArrayList<>(); while (clazz != null) { fieldList.addAll(new ArrayList<>(Arrays.asList(clazz.getDeclaredFields()))); clazz = clazz.getSuperclass(); } Field[] fields = new Field[fieldList.size()]; fieldList.toArray(fields); return fields; } }

1 MybatisInterceptor
2 MybatisConfiguration
废话不多说,直接上代码

import lombok.extern.slf4j.Slf4j; import org.apache.ibatis.executor.Executor; import org.apache.ibatis.mapping.MappedStatement; import org.apache.ibatis.mapping.SqlCommandType; import org.apache.ibatis.plugin.*; import org.springframework.stereotype.Component; import java.lang.reflect.Field; import java.util.*; /** * mybatis 拦截器字段自动填充 **/ @Slf4j @Component @Intercepts({ @Signature(type = Executor.class, method = "update", args = { MappedStatement.class, Object.class }) }) public class MybatisInterceptor implements Interceptor { @Override public Object intercept(Invocation invocation) throws Throwable { MappedStatement mappedStatement = (MappedStatement) invocation.getArgs()[0]; log.debug("------sqlId------" + mappedStatement.getId()); // sql类型:insert、update、select、delete SqlCommandType sqlCommandType = mappedStatement.getSqlCommandType(); Object parameter = invocation.getArgs()[1]; log.debug("------sqlCommandType------" + sqlCommandType); if (parameter == null) { return invocation.proceed(); } // 当sql为新增或更新类型时,自动填充操作人相关信息 if (SqlCommandType.INSERT == sqlCommandType) { Field[] fields = getAllFields(parameter); for (Field field : fields) { try { //注入创建时间 if ("createTime".equals(field.getName())) { field.setAccessible(true); field.set(parameter, new Date()); field.setAccessible(false); } //注入修改时间 if ("updateTime".equals(field.getName())) { field.setAccessible(true); field.set(parameter, new Date()); field.setAccessible(false); } } catch (Exception e) { log.error("failed to insert data, exception = ", e); } } } if (SqlCommandType.UPDATE == sqlCommandType) { Field[] fields = getAllFields(parameter); for (Field field : fields) { try { if ("updateTime".equals(field.getName())) { field.setAccessible(true); field.set(parameter, new Date()); field.setAccessible(false); } } catch (Exception e) { log.error("failed to update data, exception = ", e); } } } return invocation.proceed(); } @Override public Object plugin(Object target) { return Plugin.wrap(target, this); } @Override public void setProperties(Properties properties) { // TODO Auto-generated method stub } /** * 获取类的所有属性,包括父类 * * @param object * @return */ private Field[] getAllFields(Object object) { Class<?> clazz = object.getClass(); List<Field> fieldList = new ArrayList<>(); while (clazz != null) { fieldList.addAll(new ArrayList<>(Arrays.asList(clazz.getDeclaredFields()))); clazz = clazz.getSuperclass(); } Field[] fields = new Field[fieldList.size()]; fieldList.toArray(fields); return fields; } } /** * mybatis 拦截器注入 **/ @Configuration public class MybatisConfiguration { /** * 注册拦截器 */ @Bean public MybatisInterceptor getMybatisInterceptor() { return new MybatisInterceptor(); } } 总结

如上就解决了大部分项目中时间的问题,欢迎讨论,咨询~~

到此这篇关于springboot日期格式化,时差问题的文章就介绍到这了,更多相关springboot日期格式化内容请搜索软件开发网以前的文章或继续浏览下面的相关文章希望大家以后多多支持软件开发网!



springboot 格式化

需要 登录 后方可回复, 如果你还没有账号请 注册新账号
相关文章