首页>代码>SpringBoot+Vue前后端分离学校教学管理系统>/yxt/后端代码/yxt/src/main/java/com/zl/yxt/config/Minioconfiguration.java
package com.zl.yxt.config;

import io.minio.MinioClient;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;

@Configuration
public class Minioconfiguration {

    private final Logger log = LoggerFactory.getLogger(Minioconfiguration.class.getName());

    //minio的信息
    @Value("${minio.host}")
    private String host;
    @Value("${minio.uname}")
    private String accessKey;
    @Value("${minio.pwd}")
    private String secretKey;

    @Bean
    public MinioClient minioClient() {
        try {
            return new MinioClient(host, accessKey, secretKey);
        } catch (Exception e) {
            log.error(e.toString());
        }
        return null;
    }

}
最近下载更多
顾北城  LV12 3月28日
西瓜哥哥  LV4 2023年8月8日
ericxu1116  LV24 2023年5月28日
1806795436  LV4 2023年1月10日
331376387  LV5 2022年11月16日
qlpqlp  LV7 2022年11月14日
郎建伟  LV1 2022年11月11日
wensente  LV2 2022年11月2日
nyfcalf  LV12 2022年10月14日
最近浏览更多
yangchengshuai  LV15 10月29日
huangzy  LV12 10月23日
withyouatdusk  LV2 10月19日
sgm123456  LV13 10月12日
talete  LV3 9月29日
Lxmzdm123  LV3 9月20日
krispeng  LV13 9月17日
yimaoermao  LV1 9月14日
颜菜菜  LV2 9月6日
顶部 客服 微信二维码 底部
>扫描二维码关注最代码为好友扫描二维码关注最代码为好友