Spring 的 AOP 简介,基于 xml 的 AOP 开发,基于注解的 AOP 开发

Spring的AOP简介

什么是AOP?

AOP 为 Aspect Oriented Programming 的缩写,意思为面向切面编程,是通过预编译方式和运行期动态代理
实现程序功能的统一维护的一种技术。

AOP 是 OOP 的延续,是软件开发中的一个热点,也是Spring框架中的一个重要内容,是函数式编程的一种衍
生范型。利用AOP可以对业务逻辑的各个部分进行隔离,从而使得业务逻辑各部分之间的耦合度降低,提高程序
的可重用性,同时提高了开发的效率。

AOP的作用及优势

  • 作用:在程序运行期间,在不修改源码的情况下对方法进行功能增强
  • 优势:减少重复代码,提高开发效率,并且便于维护

AOP 的底层实现

实际上,AOP 的底层是通过 Spring 提供的的动态代理技术实现的。在运行期间,Spring通过动态代理技术动态
的生成代理对象,代理对象方法执行时进行增强功能的介入,在去调用目标对象的方法,从而完成功能的增强。

AOP 的动态代理技术

常用的动态代理技术

  • JDK 代理 : 基于接口的动态代理技术

    JDK 代理中,如果目标对象的功能需要增强,那么目标对象必须要有接口,在运行期间会基于接口动态的生成代理对象,因为是基于接口生成的所以代理对象中有目标对象中的方法,可以在代理对象中对目标对象的功能进行增强

    [外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-joRYI1mz-1654912992957)(C:\Users\w\AppData\Roaming\Typora\typora-user-images\image-20220424135010406.png)]

  • cglib 代理:基于父类的动态代理技术

    cglib 代理,在运行期间会动态的生成目标对象的子对象,这个子对象就是代理对象,(注意:这里不是继承),代理对象中有目标对象中的所有方法,可以在代理对象中对目标对象的功能进行增强

[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-dZz1tWsq-1654912992958)(C:\Users\w\AppData\Roaming\Typora\typora-user-images\image-20220424135117756.png)]

JDK的动态代理

① 目标类接口

public interface TargetInterface {
    public void method();
}

② 目标类

public class Target implements TargetInterface{
    @Override
    public void method() {
        System.out.println("目标方法执行了。。。");
    }
}

③ 增强方法

public class Advice {
    //前置增强方法
    public void before(){
        System.out.println("前置增强。。。");
    }
    //后置增强方法
    public void afterRunning(){
        System.out.println("后置增强。。。");
    }
}

④ 动态代理代码

public class ProxyTest {
    public static void main(String[] args) {
        //创建目标对象
        final Target target = new Target();
        //创建增强方法对象
        final Advice advice = new Advice();
        //创建代理对象
        TargetInterface proxy = (TargetInterface) Proxy.newProxyInstance(
                target.getClass().getClassLoader(),//目标对象类加载器
                target.getClass().getInterfaces(),//目标对象相同的对象字节码数组
                new InvocationHandler() {
                    //调用代理对象的任何方法,实质执行的都是invoke方法
                    @Override
                    public Object invoke(Object proxy, Method method, Object[] args) throws Throwable {
                        advice.before();//前置增强
                        Object invoke = method.invoke(target, args);//执行目标方法
                        advice.afterRunning();//后置增强
                        return invoke;
                    }
                }
        );
        //测试,当调用接口的任何方法时,代理对象的代码都无需修改
        proxy.method();
    }
}
/*
	测试结果:
	前置增强。。。
	目标方法执行了。。。
	后置增强。。。
*/

cglib 的动态代理

① 导入cglib的jar包

因为Spring-context中包含了cglib的jar包,所以我直接导入Spring-context的jar包

<dependency>
   <groupId>org.springframework</groupId>
   <artifactId>spring-context</artifactId>
   <version>5.0.5.RELEASE</version>
</dependency>

② 目标类

public class Target {
    public void method() {
        System.out.println("cglib目标方法执行了。。。");
    }
}

③ 动态代理代码

public class ProxyTest {
    public static void main(String[] args) {
        //创建目标对象
        final Target target = new Target();
        //创建增强对象
        final Advice advice = new Advice();
        //创建增强器
        Enhancer enhancer = new Enhancer();
        //设置父类
        enhancer.setSuperclass(Target.class);
        //设置回调函数
        enhancer.setCallback(new MethodInterceptor() {
            @Override
            public Object intercept(Object o, Method method, Object[] objects, MethodProxy methodProxy) throws Throwable {
                advice.before();//前置增强
                Object invoke = method.invoke(target, objects);//执行目标方法
                advice.afterRunning();//后置增强
                return invoke;
            }
        });
        //创建代理对象
        Target proxy = (Target) enhancer.create();
        //测试,当调用接口的任何方法时,代理对象的代码都无需修改
        proxy.method();
    }
}
/*
	测试结果:
	前置增强。。。
	cglib目标方法执行了。。。
	后置增强。。。
*/

AOP的相关概念

Spring 的 AOP 实现底层就是对上面的动态代理的代码进行了封装,封装后我们只需要对需要关注的部分进行代码编
写,并通过配置的方式完成指定目标的方法增强。

在正式讲解 AOP 的操作之前,我们必须理解 AOP 的相关术语,常用的术语如下:

  • Target(目标对象):代理的目标对象
  • Proxy (代理):一个类被 AOP 织入增强后,就产生一个结果代理类
  • Joinpoint(连接点):所谓连接点是指那些被拦截到的点。在spring中,这些点指的是方法,因为spring只支持方
    法类型的连接点
  • Pointcut(切入点):所谓切入点是指我们要对哪些 Joinpoint 进行拦截的定义(真正确定要被增强的方法)
  • Advice(通知/ 增强):所谓通知是指拦截到 Joinpoint 之后所要做的事情就是通知(增强目标对象的方法)
  • Aspect(切面):是切入点和通知(引介)的结合(目标方法与增强方法的结合)
  • Weaving(织入):是指把增强应用到目标对象来创建新的代理对象的过程。spring采用动态代理织入,而
    AspectJ采用编译期织入和类装载期织入(目标方法与增强方法结合的过程)

AOP 开发明确的事项

  1. 需要编写的内容
  • 编写核心业务代码(目标类的目标方法)
  • 编写切面类,切面类中有通知(增强功能方法)
  • 在配置文件中,配置织入关系,即将哪些通知与哪些连接点进行结合
  1. AOP 技术实现的内容

Spring 框架监控切入点方法的执行。一旦监控到切入点方法被运行,使用代理机制,动态创建目标对象的
代理对象,根据通知类别,在代理对象的对应位置,将通知对应的功能织入,完成完整的代码逻辑运行。

(就是配置好了以后,当你配置好的那些目标方法运行时,会被Spring框架监控到,Spring会用代理机制,

动态的创建目标对象,根据通知类别,在代理对象的对应位置,将对应的增强方法添加到其中,完成完整的

代码逻辑运行)

  1. AOP 底层使用哪种代理方式

在 spring 中,框架会根据目标类是否实现了接口来决定采用哪种动态代理的方式。

当Spring检测到目标方法实现了接口时,会采用JDK的动态代理;

当Spring检测到目标方法没有接口时,会采用cglib的动态代理;

知识要点

  • aop:面向切面编程
  • aop底层实现:基于JDK的动态代理 和 基于Cglib的动态代理
  • aop的重点概念:
    • Pointcut(切入点):被增强的方法
    • Advice(通知/ 增强):封装增强业务逻辑的方法
    • Aspect(切面):切点+通知
    • Weaving(织入):将切点与通知结合的过程
  • 开发明确事项:
    • 谁是切点(切点表达式配置)
    • 谁是通知(切面类中的增强方法)
    • 将切点和通知进行织入配置

基于XML的AOP开发

快速入门

① 导入 AOP 相关坐标

Spring 也有对 aop 进行实现,但是 aspectj 配置的应用性比 Spring 要好

<!-- 导入 spring 的 context 坐标, context 依赖 aop-->
    <dependency>
      <groupId>org.springframework</groupId>
      <artifactId>spring-context</artifactId>
      <version>5.0.5.RELEASE</version>
    </dependency>
    <!-- aspectj 的织入 -->
    <dependency>
      <groupId>org.aspectj</groupId>
      <artifactId>aspectjweaver</artifactId>
      <version>1.8.13</version>
    </dependency>
  </dependencies>

② 创建目标接口和目标类(内部有切点)

//接口
public interface TargetInterface {
    public void method();
}
//目标类
public class Target implements TargetInterface {
    @Override
    public void method() {
        System.out.println("目标方法执行了。。。");
    }
}

③ 创建切面类(内部有增强方法)

public class MyAspect {
    public void before(){
        System.out.println("xml前置增强。。。");
    }
}

④ 将目标类和切面类的对象创建权交给 spring (即在 applicationContext.xml 中配置注入对象)

<!--目标对象-->
<bean id="target" class="xiafanjun.aspect.Target"/>
<!--切面对象-->
<bean id="myAspect" class="xiafanjun.aspect.MyAspect"/>

⑤ 在 applicationContext.xml 中配置织入关系

  • 导入 aop 命名空间
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:aop="http://www.springframework.org/schema/aop"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xsi:schemaLocation="http://www.springframework.org/schema/beans 
                           http://www.springframework.org/schema/beans/spring-beans.xsd
                           http://www.springframework.org/schema/aop 
                           http://www.springframework.org/schema/aop/spring-aop.xsd
">
  • 在 applicationContext.xml 中配置织入关系
<!--配置织入:告诉 Spring 框架那些方法(切点)需要那些增强(前置,后置...)-->
    <aop:config>
        <!-- 引用 myAspect 的 Bean 为切面对象 -->
        <aop:aspect ref="myAspect">
            <!-- 配置 Target 的 method 方法执行时要进行 myAspect 的 before 方法前置增强 -->
            <aop:before method="before" pointcut="execution(public void xiafanjun.aspect.Target.method())"/>
        </aop:aspect>
    </aop:config>

⑥ 测试代码

  • 导入 spring-test 坐标
<dependency>
   <groupId>org.springframework</groupId>
   <artifactId>spring-test</artifactId>
   <version>5.0.5.RELEASE</version>
</dependency>
  • 测试代码
@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration("classpath:applicationContext.xml")
public class Test {
    @Autowired
    private TargetInterface target;

    @org.junit.Test
    public void test01(){
        target.method();
    }
}
/*
	测试结果:
	xml前置增强。。。
	目标方法执行了。。。
*/

XML 配置 AOP 详解

切点表达式的写法

表达式语法:

execution([修饰符] 返回值类型 包名.类名.方法名(参数))

  • 访问修饰符可以省略

  • 返回值类型、包名、类名、方法名可以使用星号* 代表任意

  • 包名与类名之间一个点 . 代表当前包下的类,两个点 … 表示当前包及其子包下的类

  • 参数列表可以使用两个点 … 表示任意个数,任意类型的参数列表

  • 例如:

// com.xiafanjun.aop 包下的 Target 类中的没有返回值的无参的 method() 方法
execution(public void com.xiafanjun.aop.Target.method())
// com.xiafanjun.aop 包下的 Target 类中的没有返回值的任意参数的任意方法(即 Target 类中所有返回值类型为 void 的方法)
execution(void com.xiafanjun.aop.Target.*(..))
// com.xiafanjun.aop 包下的任意类,任意返回值类型,任意参数的任意方法(即包下的所有类中的所有方法)
execution(* com.xiafanjun.aop.*.*(..))
// com.xiafanjun.aop 包及其子包下的任意类,任意返回值类型,任意参数的任意方法(即包下及其子包下的所有类中的所有方法)
execution(* com.xiafanjun.aop..*.*(..))

通知的类型

通知的配置语法:

<aop:通知类型 method=“切面类中方法名” pointcut=“切点表达式"/>

名称标签说明
前置通知< aop:before >用于配置前置通知。指定增强的方法在切入点方法之前执行
后置通知< aop:before >用于配置后置通知。指定增强的方法在切入点方法之后执行
环绕通知< aop:around >用于配置环绕通知。指定增强的方法在切入点方法之前和之后都执行
异常抛出通知< aop:throwing >用于配置异常抛出通知。指定增强的方法在出现异常时执行
最终通知< aop:after >用于配置最终通知。无论增强方式执行是否有异常都会执行

下面是到吗演示:

前置通知上面演示过了,这里不在进行演示

后置通知 < aop:before >

增强方法

public class MyAspect {
    //前置增强
    public void before(){
        System.out.println("xml前置增强。。。");
    }
    //后置增强
    public void afterRunning(){
        System.out.println("xml后置增强。。。");
    }
}

配置

<!--配置织入:告诉 Spring 框架那些方法(切点)需要那些增强(前置,后置...)-->
    <aop:config>
        <!-- 引用 myAspect 的 Bean 为切面对象 -->
        <aop:aspect ref="myAspect">
            <!-- 配置 Target 的 method 方法执行时要进行 myAspect 的 before 方法前置增强 -->
            <aop:before method="before" pointcut="execution(* xiafanjun.aspect.*.*(..))"/>
            <!--配置后置增强-->
            <aop:after-returning method="afterRunning" pointcut="execution(* xiafanjun.aspect.*.*(..))"/>
        </aop:aspect>
    </aop:config>

代码测试

@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration("classpath:applicationContext.xml")
public class Test {
    @Autowired
    private TargetInterface target;

    @org.junit.Test
    public void test01(){
        target.method();
    }
}
/*
	测试结果:
	xml前置增强。。。
	目标方法执行了。。。
	xml后置增强。。。
*/
环绕通知< aop:around >

增强方法

public class MyAspect {
    //环绕增强
    //Proceeding JoinPoint:正在执行的执行点===切点
    public Object round(ProceedingJoinPoint pjp) throws Throwable {
        System.out.println("环绕前增强。。。");
        Object proceed = pjp.proceed();//切点方法
        System.out.println("环绕后增强。。。");
        return proceed;
    }
}

配置

<aop:config>
        <!-- 引用 myAspect 的 Bean 为切面对象 -->
        <aop:aspect ref="myAspect">
            <!--配置环绕增强-->
            <aop:around method="round" pointcut="execution(* xiafanjun.aspect.*.*(..))"/>
        </aop:aspect>
    </aop:config>

代码测试结果

/*
	测试结果:
	环绕前增强。。。
	目标方法执行了。。。
	环绕后增强。。。
*/
异常抛出通知 < aop:throwing >

增强方法

public class MyAspect {
    //环绕增强
    //Proceeding JoinPoint:正在执行的执行点===切点
    public Object round(ProceedingJoinPoint pjp) throws Throwable {
        System.out.println("环绕前增强。。。");
        Object proceed = pjp.proceed();//切点方法
        System.out.println("环绕后增强。。。");
        return proceed;
    }
    //异常抛出增强
    public void afterThrowing(){
        System.out.println("异常抛出增强。。。");
    }
}

配置

<aop:config>
    <!-- 引用 myAspect 的 Bean 为切面对象 -->
    <aop:aspect ref="myAspect">
        <!--配置环绕增强-->
        <aop:around method="round" pointcut="execution(* xiafanjun.aspect.*.*(..))"/>
        <!--配置异常抛出增强-->
        <aop:after-throwing method="afterThrowing" pointcut="execution(* xiafanjun.aspect.*.*(..))"/>
    </aop:aspect>
</aop:config>

目标方法

public class Target implements TargetInterface {
    @Override
    public void method() {
        int i = 2/0;//让代码抛出ClassCaseException
        System.out.println("目标方法执行了。。。");
    }
}

代码测试结果

/*
	测试结果:
	环绕前增强。。。
	异常抛出增强。。。
*/
/*
	执行目标方法前会进行环绕增强
	在打印出“目标方法执行了。。。”之前抛出了 ClassCaseException,
	执行异常抛出增强之后程序运行结束
	
*/
最终通知 < aop:after >

增强方法

public class MyAspect {
    //环绕增强
    //Proceeding JoinPoint:正在执行的执行点===切点
    public Object round(ProceedingJoinPoint pjp) throws Throwable {
        System.out.println("环绕前增强。。。");
        Object proceed = pjp.proceed();//切点方法
        System.out.println("环绕后增强。。。");
        return proceed;
    }
    //异常抛出增强
    public void afterThrowing(){
        System.out.println("异常抛出增强。。。");
    }
    //最终增强
    public void after(){
        System.out.println("最终增强。。。");
    }
}

配置

<!--配置织入:告诉 Spring 框架那些方法(切点)需要那些增强(前置,后置...)-->
<aop:config>
    <!-- 引用 myAspect 的 Bean 为切面对象 -->
    <aop:aspect ref="myAspect">
        <!--配置环绕增强-->
        <aop:around method="round" pointcut="execution(* xiafanjun.aspect.*.*(..))"/>
        <!--配置异常抛出增强-->
        <aop:after-throwing method="afterThrowing" pointcut="execution(* xiafanjun.aspect.*.*(..))"/>
        <!--配置最终增强-->
        <aop:after method="after" pointcut="execution(* xiafanjun.aspect.*.*(..))"/>
    </aop:aspect>
</aop:config>

代码测试结果:

/*
	测试结果:
	环绕前增强。。。
	异常抛出增强。。。
	最终增强。。。
*/
/*
	无论是否抛出异常,在代码执行结束前都会进行最终增强
*/

切点表达式的抽取

通过上面的例子,我们可以发现,在配置时,我们的切点表达式都是一样的,这种情况下,我们可以将切点表达式抽取出来,

在增强中使用 pointcut-ref 属性代替 pointcut 属性来引用抽取后的切点表达式

下面用代码演示:

配置

<!--配置织入:告诉 Spring 框架那些方法(切点)需要那些增强(前置,后置...)-->
<aop:config>
    <!--配置切点表到式-->
    <aop:pointcut id="MyPointcut" expression="execution(* xiafanjun.aspect.*.*(..))"/>
    <!-- 引用 myAspect 的 Bean 为切面对象 -->
    <aop:aspect ref="myAspect">
        <!--配置环绕增强-->
        <aop:around method="round" pointcut-ref="MyPointcut"/>
        <!--配置最终增强-->
        <aop:after method="after" pointcut-ref="MyPointcut"/>
    </aop:aspect>
</aop:config>

目标方法

public class Target implements TargetInterface {
    @Override
    public void method() {
        System.out.println("目标方法执行了。。。");
    }
}

代码测试

@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration("classpath:applicationContext.xml")
public class Test {
    @Autowired
    private TargetInterface target;

    @org.junit.Test
    public void test01(){
        target.method();
    }
}
/*
	测试结果:
	环绕前增强。。。
	目标方法执行了。。。
	环绕后增强。。。
	最终增强。。。
*/

基于 XML 的 AOP 开发的知识要点

  • aop织入的配置

    <aop:config>
    	<aop:aspect ref= 切面类”>
    		<aop:before method= 通知方法名称” pointcut= 切点表达式"></aop:before>
    	</aop:aspect>
    </aop:config>
    
  • 通知的类型:前置通知、后置通知、环绕通知、异常抛出通知、最终通知

  • 切点表达式的写法:

    execution([修饰符] 返回值类型 包名.类名.方法名(参数))

    常见写法:
    execution(public void com.xiafanjun.aop.Target.method())
    execution(void com.xiafanjun.aop.Target.(…))
    execution(
    com.xiafanjun.aop..(…))
    execution(* com.xiafanjun.aop….(…))

基于注解的 AOP 开发

快速入门

基于注解的aop开发步骤:
① 创建目标接口和目标类(内部有切点)
② 创建切面类(内部有增强方法)
③ 将目标类和切面类的对象创建权交给 spring
④ 在切面类中使用注解配置织入关系
⑤ 在配置文件中开启组件扫描和 AOP 的自动代理
⑥ 测试

① 创建目标接口和目标类(内部有切点)

//接口
public interface TargetInterface {
    public void method();
}
//目标类
public class Target implements TargetInterface {
    @Override
    public void method() {
        System.out.println("目标方法执行了。。。");
    }
}

② 创建切面类(内部有增强方法)

public class MyAspect {
    //前置增强
    public void before(){
        System.out.println("注解前置增强。。。");
    }
}

③ 将目标类和切面类的对象创建权交给 spring

//目标类
@Component("target")//将目标类的对象创建权交给 spring
public class Target implements TargetInterface {
    @Override
    public void method() {
        System.out.println("目标方法执行了。。。");
    }
}
//切面类
@Component("myAspect")//将切面类的对象创建权交给 spring
public class MyAspect {
    //前置增强
    public void before(){
        System.out.println("注解前置增强。。。");
    }
}

④ 在切面类中使用注解配置织入关系

@Component("myAspect")
@Aspect //告诉 spring 这是当前类是切面类
public class MyAspect {
    //前置增强
    @Before("execution(* xiafanjun.anno.*.*(..))")//注解配置织入关系
    public void before(){
        System.out.println("注解前置增强。。。");
    }
}

⑤ 在配置文件中开启组件扫描和 AOP 的自动代理

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:aop="http://www.springframework.org/schema/aop"
       xmlns:context="http://www.springframework.org/schema/context"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xsi:schemaLocation="http://www.springframework.org/schema/beans
                           http://www.springframework.org/schema/beans/spring-beans.xsd
                           http://www.springframework.org/schema/aop
                           http://www.springframework.org/schema/aop/spring-aop.xsd
                           http://www.springframework.org/schema/context
                           http://www.springframework.org/schema/context/spring-context.xsd
">

    <!--组件扫描-->
    <context:component-scan base-package="xiafanjun.anno"/>
    <!--aop自动代理-->
    <aop:aspectj-autoproxy/>
    
</beans>

⑥ 测试

@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration("classpath:applicationContext-anno.xml")//上面配置的文件名称(名字可任意)
public class Test {
    @Autowired
    private TargetInterface target;

    @org.junit.Test
    public void test01(){
        target.method();
    }
}
/*
	运行结果:
	注解前置增强。。。
	目标方法执行了。。。
*/

注解配置 AOP 详解

注解通知的类型

通知的配置语法:@通知注解(“ 切点表达式")

名称注解说明
前置通知@Before用于配置前置通知。指定增强的方法在切入点方法之前执行
后置通知@AfterReturning用于配置后置通知。指定增强的方法在切入点方法之后执行
环绕通知@Around用于配置环绕通知。指定增强的方法在切入点方法之前和之后都执行
异常抛出通知@AfterThrowing用于配置异常抛出通知。指定增强的方法在出现异常时执行
最终通知@After用于配置最终通知。无论增强方式执行是否有异常都会执行

切点表达式的抽取

@Component("myAspect")
@Aspect
public class MyAspect {
    //配置切点表达式
    @Pointcut("execution(* xiafanjun.anno.*.*(..))")//配置切点表达式的注解
    public void myPointcut(){}
    //前置增强
    //也可以这样写; @Before("MyAspect.myPointcut()")
    @Before("myPointcut()")
    public void before(){
        System.out.println("注解前置增强。。。");
    }
}
/*
	运行结果:
	注解前置增强。。。
	目标方法执行了。。。
*/

知识要点

  • 注解aop开发步骤
    ① 使用@Aspect标注切面类

    ② 使用@通知注解标注通知方法

    ③ 在配置文件中配置aop自动代理< aop:aspectj-autoproxy/ >

  • 通知注解类型

名称注解说明
前置通知@Before用于配置前置通知。指定增强的方法在切入点方法之前执行
后置通知@AfterReturning用于配置后置通知。指定增强的方法在切入点方法之后执行
环绕通知@Around用于配置环绕通知。指定增强的方法在切入点方法之前和之后都执行
异常抛出通知@AfterThrowing用于配置异常抛出通知。指定增强的方法在出现异常时执行
最终通知@After用于配置最终通知。无论增强方式执行是否有异常都会执行
  • 0
    点赞
  • 3
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值