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

com.taobao.hsf.annotation.Scope Maven / Gradle / Ivy

There is a newer version: 1.8.3
Show newest version
/**
 *
 */
package com.taobao.hsf.annotation;

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

/**
 * 
 * 用来描述一个扩展是否多实例
 *
 * 如果一个服务接口标注了@Scope(Option.PROTOTYPE),每次请求{ com.taobao.hsf.util.AppServiceContainer#getInstance(Class, String, String[])} 均会返回一个新的实例
 *
 * 如果未标注@Scope则等值于@Scope(Option.SINGLETON)
 *
 * 
* * @author weipeng2k 2015年11月16日 下午2:05:33 */ @Inherited @Documented @Target(ElementType.TYPE) @Retention(RetentionPolicy.RUNTIME) public @interface Scope { /** *
     * 限定当前的服务是单例还是多例
     *
     * 
* * @return */ Option value() default Option.SINGLETON; static enum Option { // 单例,一个容器中只有一个份实例 SINGLETON, // 多例,一个容器中有多份实例,只有在请求时才会创建 PROTOTYPE; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy