com.blade.ioc.annotation.Bean Maven / Gradle / Ivy
package com.blade.ioc.annotation;
import java.lang.annotation.*;
/**
* Bean annotations can be injected
*
* @author biezhi
* @since 1.5
*/
@Target(ElementType.TYPE)
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface Bean {
String value() default "";
@Deprecated
boolean singleton() default true;
}