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

io.github.stylesmile.ioc.Bean Maven / Gradle / Ivy

package io.github.stylesmile.ioc;

import java.lang.annotation.*;

/**
 * Bean注解,标识一个类被框架容器管理
 *
 * @author Stylesmile
 */
@Documented
//作用于类上
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.METHOD, ElementType.TYPE})
public @interface Bean {
    /**
     * bean 名称
     */
    String value();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy