springboot日期转换器

注:该功能并非springboot特有的功能,springmvc同样具有

   

   

一、使用方法

   

创建一个DateConverter类实现Converter接口

importorg.springframework.core.convert.converter.Converter;

   

Converter<S,T>

@param<S>the source type

@param<T>the target type

   

   

顾名思义,S代表是数据源类型,T是要转换的类型

所以这个功能并非只限于转换日期

   

   

   

二、效果图

   

   

   

   

原文地址:https://www.cnblogs.com/fernfei/p/12091473.html