当前位置: 首页 > article >正文

Spring学习笔记_25——@DeclareParents

@DeclareParents

1. 介绍

@DeclareParents 注解是 Spring AOP(面向切面编程)中的一个特性,用于实现引入增强(Introduction Advice)。引入增强允许我们向现有的类添加新的接口或方法。这意味着通过使用 @DeclareParents,你可以让一个类“看起来”像是实现了某个接口,或者拥有某些它原本没有的方法。

基本概念:

  • 引入增强:是一种特殊类型的增强,它可以给目标对象动态地添加一些业务方法或接口。
  • 目标对象:是指将要应用增强逻辑的对象。
  • 接口或方法:通过引入增强可以为这些对象添加的接口实现或方法。

2. 场景

当你需要在多个类中添加相同的行为或功能,而不希望修改这些类的源代码时,可以考虑使用 @DeclareParents。例如,你可能想要为系统中所有的DAO层组件添加缓存支持,而不需要去修改每个DAO类的代码。

3. 源码

@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.FIELD)
public @interface DeclareParents {
    // 指定目标类型的表达式,如果在全类名的后面添加 + ,则表示的是当前类及其子类。
    String value();
    // 指定方法或者字段的默认实现类
    Class defaultImpl() default DeclareParents.class;
}

4. Demo

定义一个Person

package com.example.service;

public class Person {
    private String name;

    public Person(String name) {
        this.name = name;
    }

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }
}

定义接口

package com.example.aspect;

public interface Greeting {
    String sayHello();
}

定义实现

package com.example.aspect;

public class GreetingImpl implements Greeting {
    @Override
    public String sayHello() {
        return "Hello!";
    }
}

配置AOP使用@DeclareParents

package com.example.app;

import com.example.aspect.Greeting;
import com.example.aspect.GreetingImpl;
import com.example.service.Person;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.EnableAspectJAutoProxy;

@Configuration
@EnableAspectJAutoProxy
public class AppConfig {

    @Bean
    public Person person() {
        return new Person("John Doe");
    }

    @Bean
    @DeclareParents(value = "com.example.service.Person", defaultImpl = GreetingImpl.class)
    public Greeting greeting() {
        return null; // 返回 null,因为实际的实现是由 AOP 框架提供的
    }
}

测试

package com.example.app;

import com.example.service.Person;
import org.springframework.context.ApplicationContext;
import org.springframework.context.annotation.AnnotationConfigApplicationContext;

public class Main {
    public static void main(String[] args) {
        ApplicationContext context = new AnnotationConfigApplicationContext(AppConfig.class);
        Person person = context.getBean(Person.class);

        // 由于 Person 类通过 AOP 动态实现了 Greeting 接口,所以这里可以强转
        Greeting greeting = (Greeting) person;
        System.out.println(greeting.sayHello());
    }
}

http://www.kler.cn/a/381521.html

相关文章:

  • Windows配置cuda,并安装配置Pytorch-GPU版本
  • sql字段值转字段
  • QT-------认识QT
  • 游戏开发-UE4高清虚幻引擎教程
  • 【只生一个好 - 单例设计模式(Singleton Pattern)】
  • 将多个 k8s yaml 配置文件合并为一个文件
  • 【设计模式系列】建造者模式(十)
  • JAVA基础:单元测试;注解;枚举;网络编程 (学习笔记)
  • @Async注解提升Spring Boot项目中API接口并发能力
  • ElasticSearch备考 -- Manage the index lifecycle (ILM)
  • 微信小程序 高校教材征订系统
  • [C++]——哈希(附源码)
  • 智能合约中的AI应用
  • 【算法】——滑动窗口专题
  • Flink的环境搭建及使用
  • 基于java+SpringBoot+Vue的旅游管理系统设计与实现
  • android 怎么查看依赖包的大小
  • 【含文档】基于ssm+jsp的图书管理系统(含源码+数据库+lw)
  • Spring 框架中常见的注解(Spring、SpringMVC、SpringBoot)
  • Spleeter:音频分离的革命性工具
  • SQL实战训练之,力扣:1843. 可疑银行账户
  • Centos7 搭建 Java Web 开发环境 源码安装redis
  • 使用 ABAP GIT 发生 IF_APACK_MANIFEST dump
  • 原厂出具的校准报告有效吗?是否还要找第三方校准?
  • Vue3-子传父
  • Linux:网络协议socket