Springboot 时间格式化

方法一:属性上加注解

时间属性上添加注解:@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")

less 复制代码
@Data  
@Builder  
@NoArgsConstructor  
@AllArgsConstructor  
public class Employee implements Serializable {  
  

    private Long id;  

    private String username;  

    private String name;  


    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")  
    private LocalDateTime createTime;  

    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")  
    private LocalDateTime updateTime;  

  
}

方法二: 方法参数中添加注解@DateTimeFormat

less 复制代码
/**  
* 营业额统计  
* @param begin  
* @param end  
* @return  
*/  
@GetMapping("/turnoverStatistics")  
@ApiOperation("营业额统计")  
public Result<TurnoverReportVO> turnoverStatistics(  
    @DateTimeFormat(pattern = "yyyy-MM-dd") LocalDate begin,  
    @DateTimeFormat(pattern = "yyyy-MM-dd") LocalDate end){  
    log.info("营业额数据统计:{},{}",begin,end);  
    return Result.success(reportService.getTurnoverStatistics(begin,end));  
}

方法三:拓展spring mvc的消息转换器

重写父类方法extendMessageConverters

scala 复制代码
@Configuration  
@Slf4j  
public class WebMvcConfiguration extends WebMvcConfigurationSupport {  
  
    @Autowired  
    private JwtTokenAdminInterceptor jwtTokenAdminInterceptor;  
    @Autowired  
    private JwtTokenUserInterceptor jwtTokenUserInterceptor;  

    /**  
    * 注册自定义拦截器  
    * @param registry  
    */  
    protected void addInterceptors(InterceptorRegistry registry) {  
        log.info("开始注册自定义拦截器...");  
        registry.addInterceptor(jwtTokenAdminInterceptor)  
        .addPathPatterns("/admin/**")  
        .excludePathPatterns("/admin/employee/login");  

        registry.addInterceptor(jwtTokenUserInterceptor)  
        .addPathPatterns("/user/**")  
        .excludePathPatterns("/user/user/login")  
        .excludePathPatterns("/user/shop/status");  
    }  


    /**  
    * 设置静态资源映射,主要是访问接口文档(html、js、css)  
    * @param registry  
    */  
    protected void addResourceHandlers(ResourceHandlerRegistry registry) {  
    log.info("开始设置静态资源映射...");  
    registry.addResourceHandler("/doc.html").addResourceLocations("classpath:/META-INF/resources/");  
    registry.addResourceHandler("/webjars/**").addResourceLocations("classpath:/META-INF/resources/webjars/");  
    }  

    /**  
    * 扩展Spring MVC框架的消息转化器  
    * @param converters  
    */  
    protected void extendMessageConverters(List<HttpMessageConverter<?>> converters) {  
        log.info("扩展消息转换器...");  
        //创建一个消息转换器对象  
        MappingJackson2HttpMessageConverter converter = new MappingJackson2HttpMessageConverter();  
        //需要为消息转换器设置一个对象转换器,对象转换器可以将Java对象序列化为json数据  
        converter.setObjectMapper(new JacksonObjectMapper());  
        //将自己的消息转化器加入容器中  
        converters.add(0,converter);  
    }  
}

创建对象转换器JacksonObjectMapper

arduino 复制代码
/**  
* 对象映射器:基于jackson将Java对象转为json,或者将json转为Java对象  
* 将JSON解析为Java对象的过程称为 [从JSON反序列化Java对象]  
* 从Java对象生成JSON的过程称为 [序列化Java对象到JSON]  
*/  
public class JacksonObjectMapper extends ObjectMapper {  
  
    public static final String DEFAULT_DATE_FORMAT = "yyyy-MM-dd";  
    //public static final String DEFAULT_DATE_TIME_FORMAT = "yyyy-MM-dd HH:mm:ss";  
    public static final String DEFAULT_DATE_TIME_FORMAT = "yyyy-MM-dd HH:mm";  
    public static final String DEFAULT_TIME_FORMAT = "HH:mm:ss";  

    public JacksonObjectMapper() {  
    super();  
    //收到未知属性时不报异常  
    this.configure(FAIL_ON_UNKNOWN_PROPERTIES, false);  

    //反序列化时,属性不存在的兼容处理  
    this.getDeserializationConfig().withoutFeatures(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES);  

    SimpleModule simpleModule = new SimpleModule()  
    .addDeserializer(LocalDateTime.class, new LocalDateTimeDeserializer(DateTimeFormatter.ofPattern(DEFAULT_DATE_TIME_FORMAT)))  
    .addDeserializer(LocalDate.class, new LocalDateDeserializer(DateTimeFormatter.ofPattern(DEFAULT_DATE_FORMAT)))  
    .addDeserializer(LocalTime.class, new LocalTimeDeserializer(DateTimeFormatter.ofPattern(DEFAULT_TIME_FORMAT)))  
    .addSerializer(LocalDateTime.class, new LocalDateTimeSerializer(DateTimeFormatter.ofPattern(DEFAULT_DATE_TIME_FORMAT)))  
    .addSerializer(LocalDate.class, new LocalDateSerializer(DateTimeFormatter.ofPattern(DEFAULT_DATE_FORMAT)))  
    .addSerializer(LocalTime.class, new LocalTimeSerializer(DateTimeFormatter.ofPattern(DEFAULT_TIME_FORMAT)));  

    //注册功能模块 例如,可以添加自定义序列化器和反序列化器  
    this.registerModule(simpleModule);  
    }  
}

目录结构

相关推荐
Code季风1 分钟前
深度优化 spring 性能:从缓存、延迟加载到并发控制的实战指南
java·spring boot·后端·spring·缓存·性能优化
风象南8 分钟前
SpringBoot自定义RestTemplate的拦截器链
java·spring boot·后端
Victor3561 小时前
MySQL(138)如何设置数据归档策略?
后端
Victor3561 小时前
MySQL(137)如何进行数据库审计?
后端
FreeBuf_9 小时前
黄金旋律IAB组织利用暴露的ASP.NET机器密钥实施未授权访问
网络·后端·asp.net
张小洛10 小时前
Spring AOP 是如何生效的(入口源码级解析)?
java·后端·spring
why技术11 小时前
也是出息了,业务代码里面也用上算法了。
java·后端·算法
白仑色13 小时前
完整 Spring Boot + Vue 登录系统
vue.js·spring boot·后端
ZhangApple14 小时前
微信自动化工具:让自己的微信变成智能机器人!
前端·后端
Codebee14 小时前
OneCode 3.0: 注解驱动的Spring生态增强方案
后端·设计模式·架构