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

lodsve.core.condition.ConditionalOnDevelopment Maven / Gradle / Ivy

There is a newer version: 2.7.5-RELEASE
Show newest version
package lodsve.core.condition;

import org.springframework.context.annotation.Conditional;

import java.lang.annotation.*;

/**
 * 是否是开发模式.
 *
 * @author sunhao([email protected])
 * @version 1.0 2016/12/12 下午2:59
 */
@Target({ElementType.TYPE, ElementType.METHOD})
@Retention(RetentionPolicy.RUNTIME)
@Documented
@Conditional(OnDevelopmentConditional.class)
public @interface ConditionalOnDevelopment {
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy