org.zodiac.autoconfigure.hystrix.condition.ConditionalOnFeignHystrixEnabled Maven / Gradle / Ivy
package org.zodiac.autoconfigure.hystrix.condition;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
import org.springframework.boot.autoconfigure.condition.ConditionalOnProperty;
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.TYPE, ElementType.METHOD})
@ConditionalOnProperty(value = org.zodiac.feign.core.constants.FeignSystemPropertiesConstants.FEIGN_HYSTRIX_ENABLED, havingValue = "true")
public @interface ConditionalOnFeignHystrixEnabled {
}