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

com.yuweix.kuafu.boot.DefaultAutoConfiguration Maven / Gradle / Ivy

The newest version!
package com.yuweix.kuafu.boot;


import com.yuweix.kuafu.core.springboot.DefaultConf;
import org.springframework.boot.autoconfigure.AutoConfigureOrder;
import org.springframework.boot.autoconfigure.condition.ConditionalOnProperty;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.Import;


/**
 * @author yuwei
 */
@Configuration
@AutoConfigureOrder(Integer.MIN_VALUE)
@ConditionalOnProperty(name = "kuafu.boot.default.enabled", matchIfMissing = true)
@Import({DefaultConf.class})
public class DefaultAutoConfiguration {

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy