All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.fartherp.framework.common.extension.Adaptive Maven / Gradle / Ivy

/*
 * Copyright (c) 2017. CK. All rights reserved.
 */
package com.github.fartherp.framework.common.extension;

import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

/**
 * 在{@link ExtensionLoader}生成Extension的Adaptive Instance时,为{@link ExtensionLoader}提供信息。
 *
 * @author CK
 * @see ExtensionLoader
 * @see URL
 */
@Documented
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.TYPE, ElementType.METHOD})
public @interface Adaptive {

    /**
     * 从{@link URL}的Key名,对应的Value作为要Adapt成的Extension名。
     * 

* 如果{@link URL}这些Key都没有Value,使用 用 缺省的扩展(在接口的{@link SPI}中设定的值)。
* 比如,String[] {"key1", "key2"},表示 *

    *
  1. 先在URL上找key1的Value作为要Adapt成的Extension名; *
  2. key1没有Value,则使用key2的Value作为要Adapt成的Extension名。 *
  3. key2没有Value,使用缺省的扩展。 *
  4. 如果没有设定缺省扩展,则方法调用会抛出{@link IllegalStateException}。 *
*

* 如果不设置则缺省使用Extension接口类名的点分隔小写字串。
* 即对于Extension接口{@code com.alibaba.dubbo.xxx.YyyInvokerWrapper}的缺省值为String[] {"yyy.invoker.wrapper"} * * @see SPI#value() */ String[] value() default {}; }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy