Springboot|Springboot 格式化LocalDateTime的方法
目录
- Springboot 格式化LocalDateTime
- 引入依赖
- 配置全局生效
- **实体类 **
- 接口测试结果
- 1 在没有加全局日期格式化配置文件的时候
- 2 加了全局配置类的时候
- 3 指定某个字段解析规则
- 常用场景
Springboot 格式化LocalDateTime 我们知道在springboot中有默认的json解析器,Spring Boot 中默认使用的 Json 解析技术框架是 jackson。我们点开 pom.xml 中的 spring-boot-starter-web 依赖,可以看到一个 spring-boot-starter-json依赖:
引入依赖 其实引不引入这个依赖都一样 spring-boot-starter-web 里面就包含这个依赖
就是为了让你们理解是这个依赖在发挥作用
文章图片
com.fasterxml.jackson.datatype jackson-datatype-jsr310
配置全局生效
- Configuration 标记这是配置类 @Bean注入到spring容器中 @value 获取参数
- 这里配置的格式化日期格式是全局生效 yyyy-MM-dd HH:mm:ss
- 这里给依赖全路径 方便导包
这里给依赖全路径 方便导包
import com.fasterxml.jackson.datatype.jsr310.ser.LocalDateTimeSerializer; import org.springframework.beans.factory.annotation.Value; import org.springframework.boot.autoconfigure.jackson.Jackson2ObjectMapperBuilderCustomizer; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; import java.time.LocalDateTime; import java.time.format.DateTimeFormatter; @Configurationpublic class LocalDateTimeSerializerConfig {@Value("${spring.jackson.date-format:yyyy-MM-dd HH:mm:ss}")private String pattern; public LocalDateTimeSerializer localDateTimeDeserializer() {return new LocalDateTimeSerializer(DateTimeFormatter.ofPattern(pattern)); }@Beanpublic Jackson2ObjectMapperBuilderCustomizer jackson2ObjectMapperBuilderCustomizer() {// 默认LocalDateTime格式化的格式 yyyy-MM-dd HH:mm:ssreturn builder -> builder.serializerByType(LocalDateTime.class, localDateTimeDeserializer()); }}
**实体类 ** 日期类型是 LocalDateTime
@Data@EqualsAndHashCode(callSuper = false)@TableName(value = "https://www.it610.com/article/sg_article")public class Article implements Serializable {@TableId(value = "https://www.it610.com/article/id", type = IdType.AUTO)private Long id; /*** 标题*/@TableField(value = "https://www.it610.com/article/title")private String title; /*** 文章内容*/@TableField(value = "https://www.it610.com/article/content")private String content; /*** 文章摘要*/@TableField(value = "https://www.it610.com/article/summary")private String summary; /*** 所属分类id*/@TableField(value = "https://www.it610.com/article/category_id")private Long categoryId; /*** 所属分类名称*/@TableField(exist = false)private String categoryName; /*** 缩略图*/@TableField(value = "https://www.it610.com/article/thumbnail")private String thumbnail; /*** 是否置顶(0否,1是)*/@TableField(value = "https://www.it610.com/article/is_top")private String isTop; /*** 状态(0已发布,1草稿)*/@TableField(value = "https://www.it610.com/article/status")private String status; /*** 访问量*/@TableField(value = "https://www.it610.com/article/view_count")private Long viewCount; /*** 是否允许评论 1是,0否*/@TableField(value = "https://www.it610.com/article/is_comment")private String isComment; @TableField(value = "https://www.it610.com/article/create_by")private Long createBy; @TableField(value = "https://www.it610.com/article/create_time")private LocalDateTime createTime; @TableField(value = "https://www.it610.com/article/update_by")private Long updateBy; @TableField(value = "https://www.it610.com/article/update_time")private LocalDateTime updateTime; /*** 删除标志(0代表未删除,1代表已删除)*/@TableField(value = "https://www.it610.com/article/del_flag")private Integer delFlag; }
接口测试结果
1 在没有加全局日期格式化配置文件的时候
文章图片
2 加了全局配置类的时候
yyyy-MM-dd HH:mm:ss
文章图片
3 指定某个字段解析规则
yyyy-MM-dd
@TableField(value = "https://www.it610.com/article/create_time")@JsonFormat(pattern = "yyyy-MM-dd")private LocalDateTime createTime;
文章图片
常用场景 我们一般会配置全局解析的规则 这样方便后续对于时间格式的处理 默认的格式 按照国人的喜好 不太方便 对于后面日期格式个性的要求 我们可以针对某个属性去设置解析规则
【Springboot|Springboot 格式化LocalDateTime的方法】到此这篇关于Springboot 格式化LocalDateTime的文章就介绍到这了,更多相关Springboot 格式化内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!
推荐阅读
- Android(需要格式化布局的帮助)
- 如何在Python中以螺旋形式(蜗牛或顺时针螺旋排序)格式化给定的数组(矩阵)
- SpringBoot集成RabbitMQ和概念介绍
- SpringBoot|SpringBoot Mail邮件任务详情
- spring|SpringBoot集成 WebService
- 如何使用USB和EFI Shell格式化Windows 10的Medion Akoya S2218笔记本电脑
- SpringBoot|快速从零搭建一个SpringBoot Web项目
- Spring|从零搭建SpringBoot脚手架与SpringCloud生态
- 数据库|SpringBoot脚手架工程快速搭建
- 04|04 Springboot 格式化LocalDateTime