如何把自定義注解修飾的類注入到spring容器中

我們很多時候需要自定義注解來實現(xiàn)一些特殊的功能,比如配合Spring @Aspect實現(xiàn)對數(shù)據(jù)統(tǒng)一加解密的切面編程短蜕。那么我們如何讓我們自定義注解修飾的類被spring識別并且被注入到IOC容器中呢壁顶?我們這里提供三種方式康铭。

當然棒卷,首先我們得自定義一個做注解, 并且讓它修飾一個類

package com.luca.annotation;
import java.lang.annotation.*;

/**
 * @Author: Luca
 * @Date: 2021/9/30
 * @Description:
 */
@Documented
@Inherited
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.TYPE, ElementType.FIELD, ElementType.METHOD, ElementType.PARAMETER})
public @interface PersonalMapper {

}
package com.luca.annotation;

/**
 * @Author: Luca
 * @Date: 2021/9/30
 * @Description:
 */

@PersonalMapper
public class UserMapper {

}

至于如何檢測這個bean是否被注入到了容器中修档,我們可以通過ApplicationContext獲取并且判斷

package com.luca;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.CommandLineRunner;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.context.ApplicationContext;
import org.springframework.scheduling.annotation.EnableScheduling;
import java.util.stream.Stream;

/**
 * @Author: Luca
 * @Date: 2021/9/30
 * @Description:
 */
@SpringBootApplication
@EnableScheduling
public class DemoApplication implements CommandLineRunner {

    @Autowired
    private ApplicationContext applicationContext;

    public static void main(String[] args) {
        SpringApplication.run(DemoApplication.class, args);
    }

    @Override
    public void run(String... args){
        String[] beanDefinitionNames = applicationContext.getBeanDefinitionNames();
        Stream.of(beanDefinitionNames).forEach(beanName->{
            if (beanName.equals("userMapper")){
                System.out.println("userMapper bean exist");
            }
        });
    }
}

方式1:@Component

我們可以直接在自定義注解里面添加@Component注解

package com.luca.annotation;
import org.springframework.stereotype.Component;

import java.lang.annotation.*;

/**
 * @Author: Luca
 * @Date: 2021/9/30
 * @Description:
 */
@Documented
@Inherited
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.TYPE, ElementType.FIELD, ElementType.METHOD, ElementType.PARAMETER})
@Component
public @interface PersonalMapper {

}

我們運行程序碧绞,發(fā)現(xiàn)這個bean的確存在

2021-10-01 14:52:20.741  INFO 1042 --- [           main] com.luca.DemoApplication                 : Starting DemoApplication on LM-SHC-15009711 with PID 1042 (/Users/hzzou/workpace/v3debt/55/luca/test1/target/classes started by hzzou in /Users/hzzou/workpace/v3debt/55/luca)
2021-10-01 14:52:20.743  INFO 1042 --- [           main] com.luca.DemoApplication                 : No active profile set, falling back to default profiles: default
2021-10-01 14:52:20.999  INFO 1042 --- [           main] o.s.c.a.ConfigurationClassPostProcessor  : Cannot enhance @Configuration bean definition 'definitionRegistryPostProcessor' since its singleton instance has been created too early. The typical cause is a non-static @Bean method with a BeanDefinitionRegistryPostProcessor return type: Consider declaring such methods as 'static'.
2021-10-01 14:52:21.135  INFO 1042 --- [           main] o.s.s.c.ThreadPoolTaskScheduler          : Initializing ExecutorService 'taskScheduler'
2021-10-01 14:52:21.153  INFO 1042 --- [           main] com.luca.DemoApplication                 : Started DemoApplication in 0.684 seconds (JVM running for 2.241)
userMapper bean exist

方式二 實現(xiàn)BeanDefinitionRegistryPostProcessor接口

我們通過實現(xiàn)BeanDefinitionRegistryPostProcessor接口的方式,自定義掃描路徑吱窝,讓bean被注入到容器中讥邻。

package com.luca.annotation;

import org.springframework.beans.BeansException;
import org.springframework.beans.factory.config.ConfigurableListableBeanFactory;
import org.springframework.beans.factory.support.BeanDefinitionRegistry;
import org.springframework.beans.factory.support.BeanDefinitionRegistryPostProcessor;
import org.springframework.context.annotation.Configuration;
import org.springframework.core.type.filter.AnnotationTypeFilter;

/**
 * @Author: Luca
 * @Date: 2021/9/30
 * @Description:
 */
@Configuration
public class DefinitionRegistryPostProcessor implements BeanDefinitionRegistryPostProcessor {

    @Override
    public void postProcessBeanDefinitionRegistry(BeanDefinitionRegistry beanDefinitionRegistry) throws BeansException {
        MyBeanDefinitionScanner scanner = new MyBeanDefinitionScanner(beanDefinitionRegistry, false);
        scanner.addIncludeFilter(new AnnotationTypeFilter(PersonalMapper.class));
        scanner.doScan("com.luca.annotation");
    }

    @Override
    public void postProcessBeanFactory(ConfigurableListableBeanFactory configurableListableBeanFactory) throws BeansException {

    }
}

方式三 實現(xiàn)ImportBeanDefinitionRegistrar接口

這種方式其實和第二種方式類似,都是找到一個切入點院峡,讓spring掃描到被自定義注解修飾的類兴使,完成bean的注入

package com.luca.annotation;

import org.springframework.beans.factory.support.BeanDefinitionRegistry;
import org.springframework.context.annotation.ImportBeanDefinitionRegistrar;
import org.springframework.core.type.AnnotationMetadata;
import org.springframework.core.type.filter.AnnotationTypeFilter;

/**
 * @Author: Luca
 * @Date: 2021/9/30
 * @Description:
 */

public class PersonalAutoConfigureRegistrar implements ImportBeanDefinitionRegistrar{

    @Override
    public void registerBeanDefinitions(AnnotationMetadata annotationMetadata, BeanDefinitionRegistry beanDefinitionRegistry) {
        MyBeanDefinitionScanner scanner = new MyBeanDefinitionScanner(beanDefinitionRegistry, false);
        scanner.addIncludeFilter(new AnnotationTypeFilter(PersonalMapper.class));
        scanner.doScan("com.luca.annotation");
    }
}

package com.luca.annotation;

import org.springframework.beans.factory.config.BeanDefinitionHolder;
import org.springframework.beans.factory.support.BeanDefinitionRegistry;
import org.springframework.context.annotation.ClassPathBeanDefinitionScanner;

import java.util.Set;

/**
 * @Author: Luca
 * @Date: 2021/9/30
 * @Description:
 */

public class MyBeanDefinitionScanner extends ClassPathBeanDefinitionScanner {

    public MyBeanDefinitionScanner(BeanDefinitionRegistry registry, boolean useDefaultFilters) {
        super(registry, useDefaultFilters);
    }

    @Override
    protected Set<BeanDefinitionHolder> doScan(String... basePackages) {
        return super.doScan(basePackages);
    }
}
package com.luca.config;

import com.luca.annotation.PersonalAutoConfigureRegistrar;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.Import;

/**
 * @Author: Luca
 * @Date: 2021/9/30
 * @Description:
 */
@Configuration
@Import(PersonalAutoConfigureRegistrar.class)
public class MyConfig {
}
?著作權歸作者所有,轉載或內容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個濱河市照激,隨后出現(xiàn)的幾起案子发魄,更是在濱河造成了極大的恐慌,老刑警劉巖俩垃,帶你破解...
    沈念sama閱讀 206,311評論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件励幼,死亡現(xiàn)場離奇詭異,居然都是意外死亡口柳,警方通過查閱死者的電腦和手機赏淌,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,339評論 2 382
  • 文/潘曉璐 我一進店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來啄清,“玉大人六水,你說我怎么就攤上這事±弊洌” “怎么了掷贾?”我有些...
    開封第一講書人閱讀 152,671評論 0 342
  • 文/不壞的土叔 我叫張陵,是天一觀的道長荣茫。 經常有香客問我想帅,道長,這世上最難降的妖魔是什么啡莉? 我笑而不...
    開封第一講書人閱讀 55,252評論 1 279
  • 正文 為了忘掉前任港准,我火速辦了婚禮旨剥,結果婚禮上,老公的妹妹穿的比我還像新娘浅缸。我一直安慰自己轨帜,他們只是感情好,可當我...
    茶點故事閱讀 64,253評論 5 371
  • 文/花漫 我一把揭開白布衩椒。 她就那樣靜靜地躺著蚌父,像睡著了一般。 火紅的嫁衣襯著肌膚如雪毛萌。 梳的紋絲不亂的頭發(fā)上苟弛,一...
    開封第一講書人閱讀 49,031評論 1 285
  • 那天,我揣著相機與錄音阁将,去河邊找鬼膏秫。 笑死,一個胖子當著我的面吹牛做盅,可吹牛的內容都是我干的荔睹。 我是一名探鬼主播,決...
    沈念sama閱讀 38,340評論 3 399
  • 文/蒼蘭香墨 我猛地睜開眼言蛇,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了宵距?” 一聲冷哼從身側響起腊尚,我...
    開封第一講書人閱讀 36,973評論 0 259
  • 序言:老撾萬榮一對情侶失蹤,失蹤者是張志新(化名)和其女友劉穎满哪,沒想到半個月后婿斥,有當?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經...
    沈念sama閱讀 43,466評論 1 300
  • 正文 獨居荒郊野嶺守林人離奇死亡哨鸭,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內容為張勛視角 年9月15日...
    茶點故事閱讀 35,937評論 2 323
  • 正文 我和宋清朗相戀三年民宿,在試婚紗的時候發(fā)現(xiàn)自己被綠了。 大學時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片像鸡。...
    茶點故事閱讀 38,039評論 1 333
  • 序言:一個原本活蹦亂跳的男人離奇死亡活鹰,死狀恐怖,靈堂內的尸體忽然破棺而出只估,到底是詐尸還是另有隱情志群,我是刑警寧澤,帶...
    沈念sama閱讀 33,701評論 4 323
  • 正文 年R本政府宣布蛔钙,位于F島的核電站锌云,受9級特大地震影響,放射性物質發(fā)生泄漏吁脱。R本人自食惡果不足惜桑涎,卻給世界環(huán)境...
    茶點故事閱讀 39,254評論 3 307
  • 文/蒙蒙 一彬向、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧攻冷,春花似錦娃胆、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,259評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至涉兽,卻和暖如春招驴,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背枷畏。 一陣腳步聲響...
    開封第一講書人閱讀 31,485評論 1 262
  • 我被黑心中介騙來泰國打工别厘, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留,地道東北人拥诡。 一個月前我還...
    沈念sama閱讀 45,497評論 2 354
  • 正文 我出身青樓触趴,卻偏偏與公主長得像,于是被迫代替她去往敵國和親渴肉。 傳聞我的和親對象是個殘疾皇子冗懦,可洞房花燭夜當晚...
    茶點故事閱讀 42,786評論 2 345

推薦閱讀更多精彩內容