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

org.zodiac.autoconfigure.bootstrap.rule.AppRuleAutoConfiguration Maven / Gradle / Ivy

There is a newer version: 1.6.8
Show newest version
package org.zodiac.autoconfigure.bootstrap.rule;

import org.springframework.boot.SpringBootConfiguration;
import org.springframework.context.annotation.Bean;
import org.zodiac.autoconfigure.bootstrap.condition.ConditionalOnRuleEnabled;
import org.zodiac.core.bootstrap.rule.AppRuleContextRefresher;

@SpringBootConfiguration
@ConditionalOnRuleEnabled
public class AppRuleAutoConfiguration {

    @Bean
    protected AppRuleContextRefresher ruleContextRefresher() {
        return new AppRuleContextRefresher();
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy