RabbitmqStartupCondition.java 597 Bytes
package com.topdraw.config;

import org.springframework.context.annotation.Condition;
import org.springframework.context.annotation.ConditionContext;
import org.springframework.core.type.AnnotatedTypeMetadata;

/**
 * @author :
 * @description:
 * @function :
 * @date :Created in 2022/4/4 17:45
 * @version: :
 * @modified By:
 * @since : modified in 2022/4/4 17:45
 */
public class RabbitmqStartupCondition implements Condition {


    @Override
    public boolean matches(ConditionContext conditionContext, AnnotatedTypeMetadata annotatedTypeMetadata) {
        return false;
    }
}