91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Spring?@ComponentScan注解如何使用

發布時間:2023-03-10 10:30:46 來源:億速云 閱讀:115 作者:iii 欄目:開發技術

今天小編給大家分享一下Spring @ComponentScan注解如何使用的相關知識點,內容詳細,邏輯清晰,相信大部分人都還太了解這方面的知識,所以分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后有所收獲,下面我們一起來了解一下吧。

一、簡單介紹

翻開Spring的源碼找到@ComponentScan注解的源碼,發現注解類上赫然標注著Since: 3.1字樣。也就是說,@ComponentScan注解是從Spring的3.1版本開始提供的。在@ComponentScan注解上,標注了一個@Repeatable注解,@Repeatable注解的屬性值為ComponentScans.class。再次翻看下@ComponentScans注解的源碼,類上標注著Since: 4.3字樣。也就是說,@ComponentScans注解是從Spring4.3版本開始提供的。@ComponentScans注解就相當于是@ComponentScan注解的一個數組,在@ComponentScans注解中可以多次使用@ComponentScan注解來掃描不同的包路徑。

二、注解說明

@ComponentScans注解可以看作是@ComponentScan注解的一個數組,在@ComponentScans注解中可以多次標注@ComponentScan注解。

@ComponentScan注解最核心的功能就是Spring IOC容器在刷新的時候會掃描對應包下標注了@Component注解、@Configuration注解、@Repository注解、@Service注解和@Controller等等注解的類,生成掃描到的類的Bean定義信息,整體流程與注冊ConfigurationClassPostProcessor類的Bean定義信息的流程基本一致,最終都會將其保存到BeanFactory中的beanDefinitionMap中。

1. @ComponentScans注解源碼

/***
 * @since 4.3
 * @see ComponentScan
 */
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.TYPE)
@Documented
public @interface ComponentScans {
 ComponentScan[] value();
}

可以看到,@ComponentScans注解的源碼還是比較簡單的,在@ComponentScans注解中存在一個ComponentScan[]數組類型的value屬性,說明@ComponentScans注解的屬性可以存放一個@ComponentScan注解類型的數組,可以在ComponentScans注解中多次添加@ComponentScan注解。從@ComponentScans注解的源碼還可以看出,@ComponentScans注解從Spring 4.3版本開始提供。

2. @ComponentScan注解源碼

/*
 * @since 3.1
 * @see Configuration
 */
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.TYPE)
@Documented
@Repeatable(ComponentScans.class)
public @interface ComponentScan {
 @AliasFor("basePackages")
 String[] value() default {};
 @AliasFor("value")
 String[] basePackages() default {};
 Class<?>[] basePackageClasses() default {};
 Class<? extends BeanNameGenerator> nameGenerator() default BeanNameGenerator.class;
 Class<? extends ScopeMetadataResolver> scopeResolver() default AnnotationScopeMetadataResolver.class;
 ScopedProxyMode scopedProxy() default ScopedProxyMode.DEFAULT;
 String resourcePattern() default ClassPathScanningCandidateComponentProvider.DEFAULT_RESOURCE_PATTERN;
 boolean useDefaultFilters() default true;
 Filter[] includeFilters() default {};
 Filter[] excludeFilters() default {};
 boolean lazyInit() default false;
 @Retention(RetentionPolicy.RUNTIME)
 @Target({})
 @interface Filter {
  FilterType type() default FilterType.ANNOTATION;
  @AliasFor("classes")
  Class<?>[] value() default {};
  @AliasFor("value")
  Class<?>[] classes() default {};
  String[] pattern() default {};
 }
}

可以看到,Spring從3.1版本開始提供@ComponentScan注解,@ComponentScan注解中還有一個內部注解@Filter。

@ComponentScan注解中的每個屬性的含義如下所示:

  • value:作用同basePackages屬性,String[]數組類型,指定要掃描的包名。如果指定了要掃描的包名,則Spring會掃描指定的包及其子包下的所有類。

  • basePackages:作用同value屬性,String[]數組類型,指定要掃描的包名。如果指定了要掃描的包名,則Spring會掃描指定的包及其子包下的所有類。

  • basePackageClasses:Class<?>[]數組類型,指定要掃描的類的Class對象。

  • nameGenerator:Class<? extends BeanNameGenerator>類型,指定掃描類時,向IOC注入Bean對象時的命名規則。

  • scopeResolver:Class<? extends ScopeMetadataResolver>類型,掃描類時,用于處理并轉換符合條件的Bean的作用范圍。

  • scopedProxy:ScopedProxyMode類型,指定生成Bean對象時的代理方式,默認的代理方法是DEFAULT,也就是不使用代理。關于ScopedProxyMode的更多詳細的內容,參見后面章節。

  • resourcePattern:String類型,用于指定掃描的文件類型,默認是掃描指定包下的**/*.class。

  • useDefaultFilters:boolean類型,是否自動檢測@Component @Repository @Service @Controller注解,默認是true。

  • includeFilters:Filter[]數組類型,自定義組件掃描過濾規則,符合過濾規則的類的Bean定義信息會被注冊到IOC容器中。includeFilters表示只包含對應的規則,當使用includeFilters()來指定只包含哪些注解標注的類時,需要禁用默認的過濾規則,也就是需要將useDefaultFilters屬性設置為false。并且,除了符合過濾規則的類外,Spring內置的如下名稱的類的Bean定義信息注冊到IOC容器時不受過濾規則限制,如下所示:

org.springframework.context.annotation.internalConfigurationAnnotationProcessor
org.springframework.context.annotation.internalAutowiredAnnotationProcessor
org.springframework.context.event.internalEventListenerProcessor
org.springframework.context.event.internalEventListenerFactory

  • excludeFilters:Filter[]數組類型,自定義組件掃描過濾規則,excludeFilters表示排除使用對應的規則,符合過濾規則的類的Bean定義信息不會被注冊到IOC容器中。

  • lazyInit:boolean類型,從Spring4.1版本開始提供,表示Spring掃描組件時是否采用懶加載 ,默認false,表示不開啟懶加載。

@Filter注解中的每個屬性的含義如下所示:

  • type:FilterType類型,表示過濾規則的類型。關于FilterType的更多詳細的內容,參見后面章節。

  • value:Class<?>[]數組類型,過濾符合規則的類,作用同classes屬性。

  • classes:Class<?>[]數組類型,過濾符合規則的類,作用同value屬性。

  • pattern:如果FilterType取值為ASPECTJ,則此屬性表示ASPECTJ表達式。

3. ScopedProxyMode枚舉類源碼

ScopedProxyMode枚舉類表示Spring指定生成Bean對象時的代理方式

/*
 * @since 2.5
 * @see ScopeMetadata
 */
public enum ScopedProxyMode {
 DEFAULT,
 NO,
 INTERFACES,
 TARGET_CLASS
}

ScopedProxyMode類是從Spring 2.5版本開始提供的枚舉類,每個屬性的含義如下所示。

  • DEFAULT:默認的代理方式,也就是不使用代理,除非在component-scan級別使用了不同的配置。

  • NO:不使用代理。

  • INTERFACES:基于JDK動態代理實現接口代理對象。

  • TARGET_CLASS:基于CGLib動態代理創建類代理對象。

4. FilterType枚舉類源碼

FilterType枚舉類表示Spring掃描類時的過濾類型

/*
 * @since 2.5
 */
public enum FilterType {
 ANNOTATION,
 ASSIGNABLE_TYPE,
 ASPECTJ,
 REGEX,
 CUSTOM
}

FilterType類是Spring2.5版本開始提供的枚舉類,每個屬性的含義如下所示。

  • ANNOTATION:按照注解進行過濾。

  • ASSIGNABLE_TYPE:按照給定的類型進行過濾。

  • ASPECTJ:按照ASPECTJ表達式進行過濾。

  • REGEX:按照正則表達式進行過濾。

  • CUSTOM:按照自定義規則進行過濾,使用自定義過濾規則時,自定義的過濾器需要實現org.springframework.core.type.filter.TypeFilter接口。

在FilterType枚舉類中,ANNOTATION和ASSIGNABLE_TYPE是比較常用的,ASPECTJ和REGEX不太常用,如果FilterType枚舉類中的類型無法滿足日常開發需求時,可以通過實現org.springframework.core.type.filter.TypeFilter接口來自定義過濾規則,此時,將@Filter中的type屬性設置為FilterType.CUSTOM,classes屬性設置為自定義規則的類對應的Class對象。

三、使用案例

用Spring的注解開發應用程序時,如果需要將標注了Spring注解的類注入到IOC容器中,就需要使用@ComponentScan注解來掃描指定包下的類。同時,在Spring4.3版本開始,提供了@ComponentScans注解,在@ComponentScans注解中,支持配置多個@ComponentScan注解來掃描不同的包,配置不同的過濾規則。

1. 案例描述

使用自定義過濾規則實現Spring掃描指定包下的類時,使得名稱中含有 componentScanConfig 字符串的類符合過濾規則。

2. 案例實現

整個案例實現的步驟總體如下所示。

新建自定義過濾規則類ComponentScanFilter
public class ComponentScanFilter implements TypeFilter {
    @Override
    public boolean match(MetadataReader metadataReader, MetadataReaderFactory metadataReaderFactory) throws IOException {
        //獲取當前正在掃描的類的信息
        ClassMetadata classMetadata = metadataReader.getClassMetadata();
        //獲取當前正在掃描的類名
        String className = classMetadata.getClassName();
        return className.contains("componentScanConfig");
    }
}

可以看到,自定義過濾規則ComponentScanFilter類實現了TypeFilter接口,并覆寫了match()方法,match()方法中的核心邏輯就是:如果類的名稱中含有componentScanConfig字符串,符合過濾規則,返回true,否則,返回false。

新建配置類ComponentScanConfig
@Configuration
@ComponentScan(value = "com.lwk.demo.spring.annocation", includeFilters = {
    @Filter(type = FilterType.CUSTOM, classes = {ComponentScanFilter.class})
}, useDefaultFilters = false)
public class ComponentScanConfig {
}

可以看到,在ComponentScanConfig類上標注了@Configuration注解,說明ComponentScanConfig類是Spring的配置類。在標注的@ComponentScan注解中指定了要掃描的包名,使用只包含的過濾規則,并采用自定義過濾規則。

此時,需要注意的是,需要將是否使用默認的過濾規則設置為false。

新建測試類ComponentScanTest
public class ComponentScanTest {
    public static void main(String[] args) {
        AnnotationConfigApplicationContext context = new AnnotationConfigApplicationContext(ComponentScanConfig.class);
        String[] names = context.getBeanDefinitionNames();
        Arrays.stream(names).forEach(System.out::println);
    }
}

可以看到,在ComponentScanTest類中,在AnnotationConfigApplicationContext類的構造方法中傳入ComponentScanConfig類的Class對象創建IOC容器,并將其賦值給context局部變量。通過context局部變量的getBeanDefinitionNames()方法獲取所有的Bean定義名稱,隨后遍歷這些Bean定義名稱進行打印。

3. 案例測試

本案例中,在@ComponentScan注解中使用了includeFilters過濾規則,并且使用的是自定義過濾規則,符合過濾規則的是名稱中含有 componentScanConfig 字符串的類。另外,Spring中內置的Processor類和Factory類的Bean定義信息注冊到IOC容器時,不受過濾規則限制。

運行ComponentScanTest類輸出的結果信息如下所示:

11:14:21.476 [main] DEBUG org.springframework.context.annotation.AnnotationConfigApplicationContext - Refreshing org.springframework.context.annotation.AnnotationConfigApplicationContext@41975e01
11:14:21.504 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalConfigurationAnnotationProcessor'
11:14:21.691 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.context.event.internalEventListenerProcessor'
11:14:21.694 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.context.event.internalEventListenerFactory'
11:14:21.696 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalAutowiredAnnotationProcessor'
11:14:21.698 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalCommonAnnotationProcessor'
11:14:21.711 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'componentScanConfig'
org.springframework.context.annotation.internalConfigurationAnnotationProcessor
org.springframework.context.annotation.internalAutowiredAnnotationProcessor
org.springframework.context.annotation.internalCommonAnnotationProcessor
org.springframework.context.event.internalEventListenerProcessor
org.springframework.context.event.internalEventListenerFactory
componentScanConfig

可以看到,從IOC容器中獲取的Bean的類定義信息的名稱中可以看出,除了名稱中包含componentScanConfig字符串的類符合過濾規則外,Spring內置的Processor類和Factory類不受過濾規則限制,其類的Bean定義信息都注冊到了IOC容器中。

4. 其他應用案例

掃描時排除注解標注的類

排除@Controller、@Service和@Repository注解,可以在配置類上通過@ComponentScan注解的excludeFilters()屬性實現,如下所示:

@ComponentScan(value = "io.binghe.spring.annotation.chapter02", excludeFilters = {
    @Filter(type = FilterType.ANNOTATION, classes = {Controller.class, Service.class, Repository.class})
})
掃描時只包含注解標注的類

可以使用ComponentScan注解類的includeFilters()屬性來指定Spring在進行包掃描時,只包含哪些注解標注的類。如果使用includeFilters()屬性來指定只包含哪些注解標注的類時,需要禁用默認的過濾規則。

例如,只包含@Controller注解標注的類,可以在配置類上添加@ComponentScan注解,設置只包含@Controller注解標注的類,并禁用默認的過濾規則,如下所示:

@ComponentScan(value = "io.binghe.spring.annotation.chapter02", includeFilters = {
    @Filter(type = FilterType.ANNOTATION, classes = {Controller.class})
}, useDefaultFilters = false)
重復注解

在Java8中@ComponentScan注解是一個重復注解,可以在一個配置類上重復使用這個注解,如下所示:

@ComponentScan(value = "io.binghe.spring.annotation.chapter02", includeFilters = {
    @Filter(type = FilterType.ANNOTATION, classes = {Controller.class})
}, useDefaultFilters = false)
@ComponentScan(value = "io.binghe.spring.annotation.chapter02", includeFilters = {
    @Filter(type = FilterType.ANNOTATION, classes = {Service.class})
}, useDefaultFilters = false)

如果使用的是Java8之前的版本,就不能直接在配置類上寫多個@ComponentScan注解了。此時,可以在配置類上使用@ComponentScans注解,如下所示:

@ComponentScans(value = {
    @ComponentScan(value = "io.binghe.spring.annotation.chapter02", includeFilters = {
        @Filter(type = FilterType.ANNOTATION, classes = {Controller.class})
    }, useDefaultFilters = false),
    @ComponentScan(value = "io.binghe.spring.annotation.chapter02", includeFilters = {
        @Filter(type = FilterType.ANNOTATION, classes = {Service.class})
    }, useDefaultFilters = false)
})

總結:可以使用@ComponentScan注解來指定Spring掃描哪些包,可以使用excludeFilters()指定掃描時排除哪些組件,也可以使用includeFilters()指定掃描時只包含哪些組件。當使用includeFilters()指定只包含哪些組件時,需要禁用默認的過濾規則。

掃描時按照指定的類型進行過濾

使用@ComponentScan注解進行包掃描時,按照給定的類型只包含DemoService類(接口)或其子類(實現類或子接口)的組件,如下所示:

@ComponentScan(value = "io.binghe.spring.annotation.chapter02", includeFilters = {
    @Filter(type = FilterType.ASSIGNABLE_TYPE, classes = {DemoService.class})
}, useDefaultFilters = false)

此時,只要是DemoService類型的組件,都會被加載到容器中。也就是說:當DemoService是一個Java類時,DemoService類及其子類都會被加載到Spring容器中;當DemoService是一個接口時,其子接口或實現類都會被加載到Spring容器中。

掃描時按照ASPECTJ表達式進行過濾

使用@ComponentScan注解進行包掃描時,按照ASPECTJ表達式進行過濾,如下所示:

@ComponentScan(value = "io.binghe.spring.annotation.chapter02", includeFilters = {
    @Filter(type = FilterType.ASPECTJ, classes = {AspectJTypeFilter.class})
}, useDefaultFilters = false)

其中,AspectJTypeFilter類就是自定義的ASPECTJ表達式的過濾器類。

掃描時按照正則表達式進行過濾

使用@ComponentScan注解進行包掃描時,按照正則表達式進行過濾,如下所示:

@ComponentScan(value = "io.binghe.spring.annotation.chapter02", includeFilters = {
    @Filter(type = FilterType.REGEX, classes = {RegexPatternTypeFilter.class})
}, useDefaultFilters = false)

其中,RegexPatternTypeFilter類就是自定義的正則表達式的過濾器類。

掃描時按照自定義規則進行過濾

如果實現自定義規則進行過濾時,自定義規則的類必須是org.springframework.core.type.filter.TypeFilter接口的實現類。

例如,按照自定義規則進行過濾,首先,需要創建一個org.springframework.core.type.filter.TypeFilter接口的實現類BingheTypeFilter,如下所示:

public class BingheTypeFilter implements TypeFilter {
    @Override
    public boolean match(MetadataReader metadataReader, MetadataReaderFactory metadataReaderFactory) throws IOException {
        return false;
    }
}

當實現TypeFilter接口時,需要實現TypeFilter接口中的match()方法,match()方法的返回值為boolean類型。當返回true時,表示符合過濾規則,會將類的Bean定義信息注冊到IOC容器中;當返回false時,表示不符合過濾規則,對應的類的Bean定義信息不會注冊到IOC容器中。

接下來,使用@ComponentScan注解進行如下配置:

@ComponentScan(value = "io.binghe.spring.annotation.chapter02", includeFilters = {
    @Filter(type = FilterType.CUSTOM, classes = {BingheTypeFilter.class})
}, useDefaultFilters = false)

以上就是“Spring @ComponentScan注解如何使用”這篇文章的所有內容,感謝各位的閱讀!相信大家閱讀完這篇文章都有很大的收獲,小編每天都會為大家更新不同的知識,如果還想學習更多的知識,請關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

新丰县| 马鞍山市| 宝山区| 玉田县| 清苑县| 突泉县| 湖口县| 克什克腾旗| 方山县| 云南省| 龙海市| 澎湖县| 城口县| 资讯| 湘乡市| 乌恰县| 成都市| 南木林县| 兰溪市| 万源市| 博野县| 福鼎市| 株洲市| 九龙县| 武威市| 长白| 芒康县| 双流县| 招远市| 萝北县| 曲沃县| 陵水| 湄潭县| 孟津县| 金湖县| 灌南县| 龙江县| 东至县| 龙山县| 延寿县| 防城港市|