自定义注解动态注入 Redisson Bucket 到 Spring 容器

前置知识储备

Maven 依赖

pom.xml 添加如下依赖:

        <dependency>
            <groupId>org.redisson</groupId>
            <artifactId>redisson</artifactId>
            <version>3.16.0</version>
        </dependency>
        <!-- https://mvnrepository.com/artifact/org.apache.commons/commons-lang3 -->
        <dependency>
            <groupId>org.apache.commons</groupId>
            <artifactId>commons-lang3</artifactId>
            <version>3.12.0</version>
        </dependency>

(一)Redissson 简单使用

1)初始化 RedissonClient

    public static RedissonClient redissonClient() {
        // 1. Create config object
        Config config = new Config();
        config.useSingleServer().setAddress("redis://host:6379");

        // 2. Create Redisson instance
        // Sync and Async API
        RedissonClient redisson = Redisson.create(config);
        return redisson;
    }

2)测试代码

@Slf4j
public class RedisssonTest {
    public static void main(String[] args) {
        RedissonClient redissonClient = redissonClient();
        RBucket<String> bucket = redissonClient.getBucket("key");
        bucket.delete();
        log.info("value: {}", bucket.get());

        bucket.set("value");
        log.info("value: {}", bucket.get()); 
    }
}

3)控制台输出:

16:26:36.081 [main] INFO com.example.springdemo.RedisssonTest - value: null
16:26:36.161 [main] INFO com.example.springdemo.RedisssonTest - value: value

(二)动态注入 RedisBean 实现

1)定义 redissonClient,并进行相关配置

@Configuration
public class RedisConfig {
    @Bean
    public static RedissonClient redissonClient() {
        // 1. Create config object
        Config config = new Config();
        config.useSingleServer().setAddress("redis://host:6379");

        // 2. Create Redisson instance
        // Sync and Async API
        RedissonClient redisson = Redisson.create(config);
        return redisson;
    }
}

2)定义 RedissonBean 注解。

@Target({ElementType.FIELD})
@Retention(RetentionPolicy.RUNTIME)
@Inherited
public @interface RedissonBean {
    String key();
}

@Target({ElementType.FIELD}) 表示此注解只能作用在字段上。

3)通过自定义 BeanDefinitionRegistryPostProcessor 动态注册 RedisBean

@Slf4j
@Component
public class RedisssonBeanDefinitionRegistryPostProcessor implements BeanDefinitionRegistryPostProcessor {

    @SneakyThrows
    @Override
    public void postProcessBeanDefinitionRegistry(BeanDefinitionRegistry registry) throws BeansException {
        for (String beanName : registry.getBeanDefinitionNames()) {
            BeanDefinition beanDefinition = registry.getBeanDefinition(beanName);
            if (beanDefinition.getBeanClassName() == null) {
                continue;
            }

            if (beanDefinition.getBeanClassName().startsWith("com.example.springdemo")) {
                Class<?> beanClass = Class.forName(beanDefinition.getBeanClassName());
                FieldUtils.getFieldsListWithAnnotation(beanClass, RedissonBean.class)
                    .forEach(field -> createBeanDefinition(registry, field));
            }
        }
    }

    private void createBeanDefinition(BeanDefinitionRegistry registry, Field field) {
        // 1. 实例化一个 RootBeanDefinition
        RootBeanDefinition beanDefinition = new RootBeanDefinition();

        // 2. 设置 FactoryBeanName 和 FactoryMethodName
        beanDefinition.setFactoryBeanName("redissonClient");
        String factoryMethodName = getFactoryMethodName(field);
        log.info("factoryMethodName: {}", factoryMethodName);
        beanDefinition.setFactoryMethodName(factoryMethodName);

        // 3. 设置 FactoryMethodName 的参数
        ConstructorArgumentValues constructorArgumentValues = new ConstructorArgumentValues();
        String redisKey = getRedisKey(field);
        log.info("redisKey: {}", redisKey);
        constructorArgumentValues.addGenericArgumentValue(redisKey);
        beanDefinition.setConstructorArgumentValues(constructorArgumentValues);

        // 4. 注册到 Spring 容器中
        registry.registerBeanDefinition(redisKey, beanDefinition);
    }

    private String getFactoryMethodName(Field field) {
        String typeName = field.getType().getSimpleName();
        return "get" + typeName.substring(1);
    }

    private String getRedisKey(Field field) {
        RedissonBean annotation = field.getAnnotation(RedissonBean.class);
        return annotation.key();
    }

    @Override
    public void postProcessBeanFactory(ConfigurableListableBeanFactory beanFactory) throws BeansException {
        // do nothing
    }
}

4)自定义 RedissonContextAnnotationAutowireCandidateResolver,用来和第 3 步动态注册的 RedissBean 进行匹配。

@Slf4j
public class RedissonContextAnnotationAutowireCandidateResolver extends ContextAnnotationAutowireCandidateResolver {
    @Override
    public boolean isAutowireCandidate(BeanDefinitionHolder bdHolder, DependencyDescriptor descriptor) {
        boolean match = super.isAutowireCandidate(bdHolder, descriptor);

        if (descriptor.getDependencyType().getName().startsWith("org.redisson.api")) {
            MethodParameter methodParameter = descriptor.getMethodParameter();
            // 1. 通过方法参数名称找到对应的字段
            Field field = FieldUtils.getField(methodParameter.getDeclaringClass(), methodParameter.getParameterName(), true);
            // 2. 获取字段上的 RedissonBean 注解
            RedissonBean annotation = field.getAnnotation(RedissonBean.class);

            // 3. 如果存在注解,且注解的的 key 和 beanName 匹配,则返回 true
            if (annotation != null && annotation.key().equals(bdHolder.getBeanName())) {
                match = true;
            }

            // 4. 打印一些调试信息
            log.info("");
            log.info("[isAutowireCandidate] [descriptor] dependencyName:{}, dependencyType:{}", descriptor.getDependencyName(), descriptor.getDependencyType());
            log.info("[isAutowireCandidate] [bdHolder] beanName:{}", bdHolder.getBeanName());
            log.info("[isAutowireCandidate] [RedissonBean] key:{}", annotation.key());
            log.info("[isAutowireCandidate]match:{}", match);
            log.info("");
        }

        return match;
    }

    @Override
    public boolean isRequired(DependencyDescriptor descriptor) {
        return super.isRequired(descriptor);
    }
}

5)自定义 ApplicationContextInitializer 替换 Spring 默认的 ContextAnnotationAutowireCandidateResolver

package com.example.springdemo.registry;

@Slf4j
public class MyApplicationContextInitializer implements ApplicationContextInitializer {
     @Override
     public void initialize(ConfigurableApplicationContext applicationContext) {
         log.info("-----MyApplicationContextInitializer initialize-----");
         if (applicationContext.getBeanFactory() instanceof DefaultListableBeanFactory) {
             DefaultListableBeanFactory bf = (DefaultListableBeanFactory) applicationContext.getBeanFactory();
             bf.setAutowireCandidateResolver(new RedissonContextAnnotationAutowireCandidateResolver());
         } else {
             throw new IllegalStateException("错误的 BeanFactory");
         }
     }
 }

并在 META-INF/spring.factories 中配置:

org.springframework.context.ApplicationContextInitializer=com.example.springdemo.registry.MyApplicationContextInitializer

6)在 DemoService 中使用 @RedissonBean 注解进行测试。

@Slf4j
@Service
@RequiredArgsConstructor
public class DemoService {
    @RedissonBean(key = "redis1")
    private final RList<Long> list1;

    @RedissonBean(key = "redis2")
    private final RList<Long> list2;

    public void handle() {
        handleList1();
        handleList2();
    }

    public void clean() {
        list1.clear();
        list2.clear();
    }

    private void handleList1() {
        log.info("list1:{} ", list1.readAll());
        list1.add(1L);
        list1.add(2L);
        list1.add(3L);
        log.info("list1:{} ", list1.readAll());
    }

    private void handleList2() {
        log.info("list2:{} ", list2.readAll());
        list2.add(4L);
        list2.add(5L);
        list2.add(6L);
        log.info("list2:{} ", list2.readAll());
    }
}

7)测试代码:

@Slf4j
@SpringBootApplication
public class SpringDemoApplication {

    public static void main(String[] args) {
        ConfigurableApplicationContext context = SpringApplication.run(SpringDemoApplication.class, args);
        DemoService demoService = context.getBean(DemoService.class);
        demoService.clean();
        demoService.handle();
    }
}

控制台输出:

2021-07-09 15:38:27.461  INFO 23108 --- [           main] c.e.springdemo.service.DemoService       : list1:[] 
2021-07-09 15:38:27.510  INFO 23108 --- [           main] c.e.springdemo.service.DemoService       : list1:[1, 2, 3] 
2021-07-09 15:38:27.518  INFO 23108 --- [           main] c.e.springdemo.service.DemoService       : list2:[] 
2021-07-09 15:38:27.653  INFO 23108 --- [           main] c.e.springdemo.service.DemoService       : list2:[4, 5, 6] 

参考

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 202,802评论 5 476
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,109评论 2 379
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 149,683评论 0 335
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,458评论 1 273
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,452评论 5 364
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,505评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,901评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,550评论 0 256
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,763评论 1 296
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,556评论 2 319
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,629评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,330评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,898评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,897评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,140评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 42,807评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,339评论 2 342

推荐阅读更多精彩内容