You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
815 B
24 lines
815 B
package com.sky.config;
|
|
|
|
import com.sky.properties.AliOssProperties;
|
|
import com.sky.utils.AliOssUtil;
|
|
import lombok.extern.slf4j.Slf4j;
|
|
import org.springframework.boot.autoconfigure.condition.ConditionalOnMissingBean;
|
|
import org.springframework.context.annotation.Bean;
|
|
import org.springframework.context.annotation.Configuration;
|
|
|
|
@Configuration
|
|
@Slf4j
|
|
public class OssConfiguration {
|
|
@Bean
|
|
@ConditionalOnMissingBean
|
|
public AliOssUtil aliOssUtil(AliOssProperties aliOssProperties){
|
|
log.info("开始创建阿里云上传文件工具类对象:{}",aliOssProperties);
|
|
return new AliOssUtil(aliOssProperties.getEndpoint(),
|
|
aliOssProperties.getAccessKeyId(),
|
|
aliOssProperties.getAccessKeySecret(),
|
|
aliOssProperties.getBucketName());
|
|
}
|
|
|
|
}
|