广告
返回顶部
首页 > 资讯 > 精选 >Springboot+AOP怎么实现时间参数格式转换
  • 659
分享到

Springboot+AOP怎么实现时间参数格式转换

2023-06-30 11:06:28 659人浏览 八月长安
摘要

本文小编为大家详细介绍“SpringBoot+aop怎么实现时间参数格式转换”,内容详细,步骤清晰,细节处理妥当,希望这篇“springboot+AOP怎么实现时间参数格式转换”文章能帮助大家解决疑惑,下面跟着小编的思路慢慢深入,一起来学习

本文小编为大家详细介绍“SpringBoot+aop怎么实现时间参数格式转换”,内容详细,步骤清晰,细节处理妥当,希望这篇“springboot+AOP怎么实现时间参数格式转换”文章能帮助大家解决疑惑,下面跟着小编的思路慢慢深入,一起来学习新知识吧。

前言

场景

前端传过来的时间参数,我们后端自定义时间格式转化使用,想转成什么就转成什么。

不同业务场景,跟前端对接,一种控件基本时间参数是固定格式的,为了避免前端去转换时间参数的格式,跟前端约定好,让他们固定传递一种格式,后端自己看需求转换格式使用即可。

效果

① 从 yyyy-MM-dd HH:mm:ss 转换成 yyyy-MM-dd 使用:

Springboot+AOP怎么实现时间参数格式转换

② 从 yyyyMMddHHmmss 转换成 yyyy-MM-dd HH:mm:ss 使用:

Springboot+AOP怎么实现时间参数格式转换

③不再举例,其实就是自己想怎么转就怎么转。

实战

pom.xml (aop依赖、lombok依赖):

        <dependency>            <groupId>org.springframework.boot</groupId>            <artifactId>spring-boot-starter-WEB</artifactId>        </dependency>        <dependency>            <groupId>org.projectlombok</groupId>            <artifactId>lombok</artifactId>            <version>1.18.20</version>            <scope>compile</scope>        </dependency>        <dependency>            <groupId>org.springframework</groupId>            <artifactId>spring-aspects</artifactId>            <version>5.2.7.RELEASE</version>        </dependency>        <dependency>            <groupId>org.aspectj</groupId>            <artifactId>aspectjtools</artifactId>            <version>1.9.5</version>        </dependency>        <dependency>            <groupId>aopalliance</groupId>            <artifactId>aopalliance</artifactId>            <version>1.0</version>        </dependency>        <dependency>            <groupId>org.aspectj</groupId>            <artifactId>aspectjweaver</artifactId>            <version>1.9.0</version>        </dependency>        <dependency>            <groupId>cglib</groupId>            <artifactId>cglib</artifactId>            <version>3.3.0</version>        </dependency>

核心(自定义注解+拦截器):

Springboot+AOP怎么实现时间参数格式转换

自定义注解一 

DateField.java

用途: 用于标记哪个字段需要进行时间格式转换,配置旧格式,新格式(都可写默认值)。

import java.lang.annotation.ElementType;import java.lang.annotation.Retention;import java.lang.annotation.RetentionPolicy;import java.lang.annotation.Target;  @Target({ElementType.METHOD, ElementType.FIELD})@Retention(RetentionPolicy.RUNTIME)public @interface DateField {     String oldPattern() default DateUtil.YYYY_MM_DD_HH_MM_SS;        //新格式可以写默认也可以不写,如果业务比较固定,那么新时间格式和旧时间格式都可以固定写好    String newPattern() default "";}

自定义注解二 

NeedDateFORMatConvert.java

用途: 用于标记哪个接口需要进行AOP方式 时间格式转换。

import java.lang.annotation.ElementType;import java.lang.annotation.Retention;import java.lang.annotation.RetentionPolicy;import java.lang.annotation.Target; @Target({ElementType.METHOD})@Retention(RetentionPolicy.RUNTIME)public @interface NeedDateFormatConvert { }

拦截器

DateFormatAspect.java

用途: 核心转换实现逻辑。

import com.jctest.dotestdemo.util.DateUtil;import org.aspectj.lang.ProceedingJoinPoint;import org.aspectj.lang.annotation.Around;import org.aspectj.lang.annotation.Aspect;import org.aspectj.lang.annotation.Pointcut;import org.slf4j.Logger;import org.slf4j.LoggerFactory;import org.springframework.stereotype.Component;import org.springframework.util.StringUtils; import java.lang.reflect.Field;import java.util.Objects;  @Aspect@Componentpublic class DateFormatAspect {    private static Logger log = LoggerFactory.getLogger(DateFormatAspect.class);     @Pointcut("@annotation(com.jctest.dotestdemo.aop.dateFormat.NeedDateFormatConvert)")    public void pointCut() {    }     @Around("pointCut()")    public Object around(ProceedingJoinPoint joinPoint) throws Throwable {        //转换        dateFormat(joinPoint);        return joinPoint.proceed();    }     public void dateFormat(ProceedingJoinPoint joinPoint) {        Object[] objects = null;        try {            objects = joinPoint.getArgs();            if (objects.length != 0) {                for (int i = 0; i < objects.length; i++) {                    //当前只支持判断对象类型参数                    convertObject(objects[i]);                }            }        } catch (Exception e) {            e.printStackTrace();            throw new RuntimeException("参数异常");         }    }         private void convertObject(Object obj) throws IllegalAccessException {         if (Objects.isNull(obj)) {            log.info("当前需要转换的object为null");            return;        }        Field[] fields = obj.getClass().getDeclaredFields();        for (Field field : fields) {            boolean containFormatField = field.isAnnotationPresent(DateField.class);            if (containFormatField) {                //获取访问权                field.setAccessible(true);                DateField annotation = field.getAnnotation(DateField.class);                String oldPattern = annotation.oldPattern();                String newPattern = annotation.newPattern();                Object dateValue = field.get(obj);                if (Objects.nonNull(dateValue) && StringUtils.hasLength(oldPattern) && StringUtils.hasLength(newPattern)) {                    String newDateValue = DateUtil.strFormatConvert(String.valueOf(dateValue), oldPattern, newPattern);                    if (Objects.isNull(newDateValue)){                        log.info("当前需要转换的日期数据转换失败 dateValue = {}",dateValue.toString());                        throw new RuntimeException("参数转换异常");                    }                    field.set(obj, newDateValue);                }            }        }    }    }

工具

DateUtil.java

用途: 时间格式转换函数、定义各种时间格式。

import lombok.extern.slf4j.Slf4j;import java.time.LocalDateTime;import java.time.format.DateTimeFormatter; @Slf4jpublic class DateUtil {     public static final String YYYY_MM_DD_HH_MM_SS = "yyyy-MM-dd HH:mm:ss";    public static final String YYYY_MM_DD = "yyyy-MM-dd";    public static final String YYYY_MM = "yyyy-MM";    public static final String YYYY = "yyyy";    public static final String MM = "MM";    public static final String DD = "dd";    public static final String YYYYMMDDHHMMSS = "yyyyMMddHHmmss";    public static final String YYYYMMDD = "yyyyMMdd";         public static String strFormatConvert(String dateStr, String oldPattern,String newPattern) {        try {            DateTimeFormatter oldFormatter = DateTimeFormatter.ofPattern(oldPattern);            DateTimeFormatter newFormatter = DateTimeFormatter.ofPattern(newPattern);            return LocalDateTime.parse(dateStr, oldFormatter).format(newFormatter);        } catch (Exception e) {            log.error("strToDate is Exception. e:", e);            return null;        }    }}

使用 

UserQueryVO.java 

import com.jctest.dotestdemo.aop.dateFormat.DateField;import com.jctest.dotestdemo.util.DateUtil;import lombok.Data; import java.io.Serializable; @Datapublic class UserQueryVO implements Serializable {        @DateField(oldPattern =DateUtil.YYYY_MM_DD_HH_MM_SS, newPattern = DateUtil.YYYY_MM_DD)    private String startDate;        @DateField(oldPattern =DateUtil.YYYY_MM_DD_HH_MM_SS,newPattern = DateUtil.YYYY_MM_DD)    private String endDate;}

接口

import com.jctest.dotestdemo.aop.dateFormat.NeedDateFormatConvert;import com.jctest.dotestdemo.vo.UserQueryVO;import org.springframework.web.bind.annotation.*; @RestControllerpublic class UserController {     @NeedDateFormatConvert    @PostMapping("/test")    public String test( @RequestBody UserQueryVO userQueryVO){        System.out.println("时间格式转化完成:");        System.out.println(userQueryVO.getStartDate());        System.out.println(userQueryVO.getEndDate());        return userQueryVO.toString();    }}

调用

Springboot+AOP怎么实现时间参数格式转换

Springboot+AOP怎么实现时间参数格式转换

读到这里,这篇“Springboot+AOP怎么实现时间参数格式转换”文章已经介绍完毕,想要掌握这篇文章的知识点还需要大家自己动手实践使用过才能领会,如果想了解更多相关内容的文章,欢迎关注编程网精选频道。

--结束END--

本文标题: Springboot+AOP怎么实现时间参数格式转换

本文链接: https://www.lsjlt.com/news/328449.html(转载时请注明来源链接)

有问题或投稿请发送至: 邮箱/279061341@qq.com    QQ/279061341

本篇文章演示代码以及资料文档资料下载

下载Word文档到电脑,方便收藏和打印~

下载Word文档
猜你喜欢
  • Springboot+AOP怎么实现时间参数格式转换
    本文小编为大家详细介绍“Springboot+AOP怎么实现时间参数格式转换”,内容详细,步骤清晰,细节处理妥当,希望这篇“Springboot+AOP怎么实现时间参数格式转换”文章能帮助大家解决疑惑,下面跟着小编的思路慢慢深入,一起来学习...
    99+
    2023-06-30
  • Springboot+AOP实现时间参数格式转换
    目录前言场景效果实战自定义注解一 自定义注解二 拦截器工具类使用 接口调用前言 场景 前端传过来的时间参数,我们后端自定义时间格式转化使用,想转成什么就...
    99+
    2022-11-13
  • php时间格式转换成时间戳如何实现
    这篇文章主要介绍“php时间格式转换成时间戳如何实现”的相关知识,小编通过实际案例向大家展示操作过程,操作方法简单快捷,实用性强,希望这篇“php时间格式转换成时间戳如何实现”文章能帮助大家解决问题。一、什么是时间格式和时间戳在PHP中,时...
    99+
    2023-07-05
  • php怎么将时间戳转换为时间格式
    时间戳是一种表示时间的方法,它是从1970年1月1日00:00:00开始计算的秒数。在很多应用程序中,我们需要将时间戳转换为人类可读的时间格式,以便更清晰地理解时间。 在PHP中,有几种简单的方法可以将时间戳转换为时间。在本文中,我们将探讨...
    99+
    2023-05-14
  • 怎么将PHP时间格式转换为时间戳
    这篇文章主要介绍“怎么将PHP时间格式转换为时间戳”,在日常操作中,相信很多人在怎么将PHP时间格式转换为时间戳问题上存在疑惑,小编查阅了各式资料,整理出简单好用的操作方法,希望对大家解答”怎么将PHP时间格式转换为时间戳”的疑惑有所帮助!...
    99+
    2023-07-05
  • Python+Delorean实现时间格式智能转换
    目录1.介绍2.准备3.Delorean基础使用4.Delorean高级使用1.介绍 DeLorean是一个Python的第三方模块,基于 pytz 和 dateutil 开发,用于...
    99+
    2022-11-12
  • php 怎么实现时间戳转格式
    本文操作环境:Windows7系统,PHP7.1版,Dell G3电脑。php 怎么实现时间戳转格式?php中时间戳和日期格式的转换一,PHP时间戳函数获取指定日期的unix时间戳 strtotime(”2009-1-22″) 示例如下:e...
    99+
    2016-08-15
    php
  • 怎么使用PHP将时间格式转换成时间戳
    本篇内容主要讲解“怎么使用PHP将时间格式转换成时间戳”,感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让小编来带大家学习“怎么使用PHP将时间格式转换成时间戳”吧!一、时间格式及其说明在处理时间格式化之前,我们需要先...
    99+
    2023-07-05
  • php时间格式转换时间戳的问题怎么解决
    本文小编为大家详细介绍“php时间格式转换时间戳的问题怎么解决”,内容详细,步骤清晰,细节处理妥当,希望这篇“php时间格式转换时间戳的问题怎么解决”文章能帮助大家解决疑惑,下面跟着小编的思路慢慢深入,一起来学习新知识吧。时间戳是一个整数值...
    99+
    2023-07-05
  • 怎么使用PHP时间戳转换源码来转换时间戳为日期格式
    这篇“怎么使用PHP时间戳转换源码来转换时间戳为日期格式”文章的知识点大部分人都不太理解,所以小编给大家总结了以下内容,内容详细,步骤清晰,具有一定的借鉴价值,希望大家阅读完这篇文章能有所收获,下面我们一起来看看这篇“怎么使用PHP时间戳转...
    99+
    2023-07-05
  • SpringBoot自定义对象参数实现自动类型转换与格式化
    目录序章一、实体类 Bean二、前端表单index.html三、Controller 类四、运行结果截图序章 问题提出一: 当我们用表单获取一个 Person 对象的所有属性值时, ...
    99+
    2022-11-13
  • PHP中怎么将时间戳转换为日期格式
    本篇内容主要讲解“PHP中怎么将时间戳转换为日期格式”,感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让小编来带大家学习“PHP中怎么将时间戳转换为日期格式”吧!一、什么是时间戳时间戳是指从1970年1月1日00:00...
    99+
    2023-07-05
  • Java中时间格式转换impleDateFormat与Data API怎么用
    这篇文章将为大家详细讲解有关Java中时间格式转换impleDateFormat与Data API怎么用,小编觉得挺实用的,因此分享给大家做个参考,希望大家阅读完这篇文章后可以有所收获。1.创建无参数Data对象Date d1=new Da...
    99+
    2023-06-25
  • 怎么使用PHP将字符转换成时间格式
    本篇内容主要讲解“怎么使用PHP将字符转换成时间格式”,感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让小编来带大家学习“怎么使用PHP将字符转换成时间格式”吧!一、strtotime()函数PHP内置的strtoti...
    99+
    2023-07-06
  • PHP怎么将Unix时间戳转换成日期格式
    这篇文章主要介绍了PHP怎么将Unix时间戳转换成日期格式的相关知识,内容详细易懂,操作简单快捷,具有一定借鉴价值,相信大家阅读完这篇PHP怎么将Unix时间戳转换成日期格式文章都会有所收获,下面我们一起来看看吧。第一种方法是使用PHP中的...
    99+
    2023-07-05
  • php怎么实现时间戳转换具体时间
    这篇“php怎么实现时间戳转换具体时间”文章的知识点大部分人都不太理解,所以小编给大家总结了以下内容,内容详细,步骤清晰,具有一定的借鉴价值,希望大家阅读完这篇文章能有所收获,下面我们一起来看看这篇“php怎么实现时间戳转换具体时间”文章吧...
    99+
    2023-07-05
  • 使用Springboot自定义转换器实现参数去空格功能
    目录自定义转换器实现参数去空格1.自定义转换器类2.将转换器交给spring容器处理SpringBoot请求参数过滤空格1、参数修改SpaceHttpServletRequestWr...
    99+
    2022-11-12
  • Pandas中字符串和时间转换与格式化的实现
    目录把字符串转为时间格式把时间格式化为字符串格式化某一列的时间为字符串遇到的错误使用apply()和lambda函数Pandas 提供了若干个函数来格式化时间。 把字符串转为时间格式...
    99+
    2023-01-17
    Pandas 字符串和时间转换 Pandas 字符串格式化 Pandas 时间格式化
  • javascript怎么将时间戳转换为普通日期格式
    小编给大家分享一下javascript怎么将时间戳转换为普通日期格式,希望大家阅读完这篇文章之后都有所收获,下面让我们一起去探讨吧!javascript把时间戳转换为普通日期格式的方法:1、使用Date toLocaleString方法;2...
    99+
    2023-06-14
  • php怎么将日期时间转换为y m d格式
    本教程操作环境:windows7系统、PHP7.1版、DELL G3电脑php将日期时间转换为y m d格式可以转为两个步骤:使用strtotime()将指定日期时间转为时间戳使用date()函数格式化时间戳,将其转为“y m d”格式的时...
    99+
    2017-09-28
    php 日期时间 y m d格式
软考高级职称资格查询
编程网,编程工程师的家园,是目前国内优秀的开源技术社区之一,形成了由开源软件库、代码分享、资讯、协作翻译、讨论区和博客等几大频道内容,为IT开发者提供了一个发现、使用、并交流开源技术的平台。
  • 官方手机版

  • 微信公众号

  • 商务合作