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

cn.gitlab.virtualcry.sapjco.spring.context.annotation.JCoComponentScans Maven / Gradle / Ivy

package cn.gitlab.virtualcry.sapjco.spring.context.annotation;

import java.lang.annotation.*;

/**
 * Container annotation that aggregates several {@link JCoComponentScan} annotations.
 *
 * 

Can be used natively, declaring several nested {@link JCoComponentScan} annotations. * Can also be used in conjunction with Java 8's support for repeatable annotations, * where {@link JCoComponentScan} can simply be declared several times on the same method, * implicitly generating this container annotation. * * @author VirtualCry * @see JCoComponentScan */ @Retention(RetentionPolicy.RUNTIME) @Target(ElementType.TYPE) @Documented public @interface JCoComponentScans { JCoComponentScan[] value(); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy