最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

Spring中@Import的各種用法以及ImportAware接口詳解

 更新時(shí)間:2019年10月08日 11:15:15   作者:coder小黑  
這篇文章主要介紹了Spring中@Import的各種用法以及ImportAware接口詳解,文中通過(guò)示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來(lái)一起學(xué)習(xí)學(xué)習(xí)吧

@Import 注解

@Import注解提供了和XML中<import/>元素等價(jià)的功能,實(shí)現(xiàn)導(dǎo)入的一個(gè)或多個(gè)配置類(lèi)。@Import即可以在類(lèi)上使用,也可以作為元注解使用。

@Target(ElementType.TYPE)
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface Import {

  /**
   * {@link Configuration}, {@link ImportSelector}, {@link ImportBeanDefinitionRegistrar}
   * or regular component classes to import.
   */
  Class<?>[] value();

}

注解中只有一個(gè)value();。支持導(dǎo)入@Configuration標(biāo)注的配置類(lèi),實(shí)現(xiàn)ImportSelector接口的類(lèi)、實(shí)現(xiàn)ImportBeanDefinitionRegistrar接口的類(lèi)和普通的@component類(lèi)。

作為元注解使用

@Import可以作為元注解使用,可以在@Import的繼承上封裝一層。我的理解是,這樣做不會(huì)對(duì)外(使用方)暴露我內(nèi)部的具體實(shí)現(xiàn)細(xì)節(jié)。

舉個(gè)例子:例如@EnableAspectJAutoProxy注解。

@Import(AspectJAutoProxyRegistrar.class)
public @interface EnableAspectJAutoProxy {

@EnableAspectJAutoProxy就是被@Import這個(gè)元注解所標(biāo)志了,我們(程序員)通過(guò)使用@EnableAspectJAutoProxy來(lái)開(kāi)啟AspectJAutoProxy,而Spring底層是通過(guò)@Import導(dǎo)入相應(yīng)的配置類(lèi)來(lái)實(shí)現(xiàn)的。

導(dǎo)入實(shí)現(xiàn)ImportSelector接口的類(lèi)

先來(lái)看一下ImportSelector接口,該接口中只有一個(gè)方法:

public interface ImportSelector {
  String[] selectImports(AnnotationMetadata importingClassMetadata);
}

ImportSelector,輸入選擇器。該接口就是用來(lái)根據(jù)給定的條件,選擇導(dǎo)入哪些配置類(lèi)。

舉個(gè)例子:例如@EnableTransactionManagement注解。

@Import(TransactionManagementConfigurationSelector.class)
public @interface EnableTransactionManagement {

在@EnableTransactionManagement注解中使用了@Import(TransactionManagementConfigurationSelector.class)注解,其中TransactionManagementConfigurationSelector類(lèi)就是實(shí)現(xiàn)了ImportSelector接口。

public class TransactionManagementConfigurationSelector extends AdviceModeImportSelector<EnableTransactionManagement> {
  @Override
  protected String[] selectImports(AdviceMode adviceMode) {
    switch (adviceMode) {
      case PROXY:
        return new String[] {AutoProxyRegistrar.class.getName(),
            ProxyTransactionManagementConfiguration.class.getName()};
      case ASPECTJ:
        return new String[] {
            TransactionManagementConfigUtils.TRANSACTION_ASPECT_CONFIGURATION_CLASS_NAME};
      default:
        return null;
    }
  }
}

方法的內(nèi)部實(shí)現(xiàn)邏輯也很簡(jiǎn)單,就是根據(jù)不同的AdviceMode導(dǎo)入不同的配置類(lèi),來(lái)實(shí)現(xiàn)事務(wù)管理。

導(dǎo)入實(shí)現(xiàn)ImportBeanDefinitionRegistrar接口的類(lèi)

ImportBeanDefinitionRegistrar接口中也只有一個(gè)方法:

public interface ImportBeanDefinitionRegistrar {
  void registerBeanDefinitions(AnnotationMetadata importingClassMetadata, BeanDefinitionRegistry registry);
}

該接口允許我們根據(jù)所給的注解元數(shù)據(jù),按需注冊(cè)額外的BeanDefinition。

舉個(gè)例子:例如@EnableAspectJAutoProxy注解。

@Import(AspectJAutoProxyRegistrar.class)
public @interface EnableAspectJAutoProxy {

@EnableAspectJAutoProxy注解引入了AspectJAutoProxyRegistrar.class類(lèi),這個(gè)類(lèi)就是實(shí)現(xiàn)了ImportBeanDefinitionRegistrar接口。

class AspectJAutoProxyRegistrar implements ImportBeanDefinitionRegistrar {

  @Override
  public void registerBeanDefinitions(
      AnnotationMetadata importingClassMetadata, BeanDefinitionRegistry registry) {

    AopConfigUtils.registerAspectJAnnotationAutoProxyCreatorIfNecessary(registry);

    AnnotationAttributes enableAspectJAutoProxy =
        AnnotationConfigUtils.attributesFor(importingClassMetadata, EnableAspectJAutoProxy.class);
    if (enableAspectJAutoProxy != null) {
      if (enableAspectJAutoProxy.getBoolean("proxyTargetClass")) {
        AopConfigUtils.forceAutoProxyCreatorToUseClassProxying(registry);
      }
      if (enableAspectJAutoProxy.getBoolean("exposeProxy")) {
        AopConfigUtils.forceAutoProxyCreatorToExposeProxy(registry);
      }
    }
  }
}

registerBeanDefinitions中調(diào)用了AopConfigUtils.registerAspectJAnnotationAutoProxyCreatorIfNecessary(registry);方法,這個(gè)方法就是在往傳入的BeanDefinitionRegistry registry中注冊(cè)BeanDefinition。注冊(cè)了BeanDefinition之后,Spring就會(huì)去實(shí)例化這個(gè)Bean,從而達(dá)到AspectJAutoProxy作用。

導(dǎo)入@Configuration類(lèi)

這次@Import最常見(jiàn)是使用方法。我們可以拆分配置類(lèi),然后在程序中按需導(dǎo)入相應(yīng)的配置。

舉個(gè)例子:例如@EnableRetry注解。使用這個(gè)注解可以開(kāi)啟retry功能。

@EnableAspectJAutoProxy(proxyTargetClass = false)
@Import(RetryConfiguration.class)
public @interface EnableRetry {

其內(nèi)部就是導(dǎo)入了RetryConfiguration這個(gè)配置類(lèi)。

ImportAware接口

ImportAware接口是需要和@Import一起使用的。在@Import作為元注解使用時(shí),通過(guò)@Import導(dǎo)入的配置類(lèi)如果實(shí)現(xiàn)了ImportAware接口就可以獲取到導(dǎo)入該配置類(lèi)接口的數(shù)據(jù)配置。有點(diǎn)繞,我們直接上代碼。

舉個(gè)例子:@EnableAsync注解。

@Import(AsyncConfigurationSelector.class)
public @interface EnableAsync {
//AsyncConfigurationSelector源碼
public class AsyncConfigurationSelector extends AdviceModeImportSelector<EnableAsync> {

  private static final String ASYNC_EXECUTION_ASPECT_CONFIGURATION_CLASS_NAME =
      "org.springframework.scheduling.aspectj.AspectJAsyncConfiguration";
  @Override
  @Nullable
  public String[] selectImports(AdviceMode adviceMode) {
    switch (adviceMode) {
      case PROXY:
        return new String[] {ProxyAsyncConfiguration.class.getName()};
      case ASPECTJ:
        return new String[] {ASYNC_EXECUTION_ASPECT_CONFIGURATION_CLASS_NAME};
      default:
        return null;
    }
  }
}

默認(rèn)情況下使用AdviceMode為PROXY,導(dǎo)入了ProxyAsyncConfiguration類(lèi)。

@Configuration
@Role(BeanDefinition.ROLE_INFRASTRUCTURE)
public class ProxyAsyncConfiguration extends AbstractAsyncConfiguration {

  @Bean(name = TaskManagementConfigUtils.ASYNC_ANNOTATION_PROCESSOR_BEAN_NAME)
  @Role(BeanDefinition.ROLE_INFRASTRUCTURE)
  public AsyncAnnotationBeanPostProcessor asyncAdvisor() {
    Assert.notNull(this.enableAsync, "@EnableAsync annotation metadata was not injected");
    AsyncAnnotationBeanPostProcessor bpp = new AsyncAnnotationBeanPostProcessor();
    Class<? extends Annotation> customAsyncAnnotation = this.enableAsync.getClass("annotation");
    if (customAsyncAnnotation != AnnotationUtils.getDefaultValue(EnableAsync.class, "annotation")) {
      bpp.setAsyncAnnotationType(customAsyncAnnotation);
    }
    if (this.executor != null) {
      bpp.setExecutor(this.executor);
    }
    if (this.exceptionHandler != null) {
      bpp.setExceptionHandler(this.exceptionHandler);
    }
    bpp.setProxyTargetClass(this.enableAsync.getBoolean("proxyTargetClass"));
    bpp.setOrder(this.enableAsync.<Integer>getNumber("order"));
    return bpp;
  }
}

在ProxyAsyncConfiguration的asyncAdvisor方法中需要獲取到@EnableAsync上的一些設(shè)置值,例如:this.enableAsync.getBoolean("proxyTargetClass"),this.enableAsync.<Integer>getNumber("order")。

this.enableAsync是其父類(lèi)AbstractAsyncConfiguration的屬性。AbstractAsyncConfiguration實(shí)現(xiàn)了ImportAware接口,從而就可以獲取到@EnableAsync上的信息了。

// AbstractAsyncConfiguration#setImportMetadata 源碼
public void setImportMetadata(AnnotationMetadata importMetadata) {
  this.enableAsync = AnnotationAttributes.fromMap(
      importMetadata.getAnnotationAttributes(EnableAsync.class.getName(), false));
  if (this.enableAsync == null) {
    throw new IllegalArgumentException(
        "@EnableAsync is not present on importing class " + importMetadata.getClassName());
  }
}

可能這個(gè)例子有點(diǎn)復(fù)雜的,還有一個(gè)稍微簡(jiǎn)單一點(diǎn)的例子:EnableRedisHttpSession。關(guān)于這個(gè),讀者可以自己去看一下源碼debug學(xué)習(xí)一下。

以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。

相關(guān)文章

最新評(píng)論

吴旗县| 濮阳县| 闽侯县| 静安区| 绥江县| 石棉县| 梓潼县| 安化县| 京山县| 越西县| 江川县| 当雄县| 大渡口区| 泾源县| 远安县| 砚山县| 大方县| 年辖:市辖区| 昌江| 南京市| 鄂尔多斯市| 常德市| 富锦市| 天峻县| 开远市| 萝北县| 历史| 姚安县| 万安县| 临夏县| 甘泉县| 兴宁市| 洛宁县| 柳河县| 舞阳县| 榆社县| 安多县| 故城县| 钟祥市| 梅州市| 陆河县|