com.healthy.common.qcloud.cos.QcloudCosAutoConfiguration Maven / Gradle / Ivy
package com.healthy.common.qcloud.cos;
import org.springframework.boot.autoconfigure.condition.ConditionalOnProperty;
import org.springframework.boot.context.properties.EnableConfigurationProperties;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.Import;
/**
* QcloudCosAutoConfiguration
*
* @author zhang.xiaoming
*/
@Import(QcloudCos.class)
@Configuration(proxyBeanMethods = false)
@EnableConfigurationProperties(QcloudCosProperties.class)
@ConditionalOnProperty(prefix = "qcloud.cos", name = { "app-id", "secret-id", "secret-key" })
public class QcloudCosAutoConfiguration {
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy