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

pers.warren.ioc.annotation.Configuration Maven / Gradle / Ivy

The newest version!
package pers.warren.ioc.annotation;

import java.lang.annotation.*;

/**
 * 配置类注解
 *
 * @author warren
 * @since jdk1.8
 */
@Target(ElementType.TYPE)
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface Configuration {

    String[] scanner() default {};

    String value() default "";

    String name() default "";
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy