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

com.hyf.hotrefresh.adapter.spring.config.HotRefreshEnableCondition Maven / Gradle / Ivy

package com.hyf.hotrefresh.adapter.spring.config;

import com.hyf.hotrefresh.core.install.CoreInstaller;
import org.springframework.context.annotation.Condition;
import org.springframework.context.annotation.ConditionContext;
import org.springframework.core.type.AnnotatedTypeMetadata;

/**
 * @author baB_hyf
 * @date 2022/05/13
 */
public class HotRefreshEnableCondition implements Condition {

    @Override
    public boolean matches(ConditionContext context, AnnotatedTypeMetadata metadata) {
        return CoreInstaller.enable();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy