From fee66fde68610850d4c8c52df022b9d53a0cd3f7 Mon Sep 17 00:00:00 2001
From: zhangfeng <1603559716@qq.com>
Date: 星期三, 21 九月 2022 14:40:34 +0800
Subject: [PATCH] Merge branch 'master' of https://sinanoaq.cn:8888/r/safePlatform-out into zf
---
safePlatfrom-out-web/src/main/java/com/gkhy/safePlatform/minioFile/config/MinioConfig.java | 180 ++++++++++++++++++++++++++++++------------------------------
1 files changed, 90 insertions(+), 90 deletions(-)
diff --git a/safePlatfrom-out-web/src/main/java/com/gkhy/safePlatform/minioFile/config/MinioConfig.java b/safePlatfrom-out-web/src/main/java/com/gkhy/safePlatform/minioFile/config/MinioConfig.java
index 25d2621..557b4da 100644
--- a/safePlatfrom-out-web/src/main/java/com/gkhy/safePlatform/minioFile/config/MinioConfig.java
+++ b/safePlatfrom-out-web/src/main/java/com/gkhy/safePlatform/minioFile/config/MinioConfig.java
@@ -1,90 +1,90 @@
-package com.gkhy.safePlatform.minioFile.config;
-
-import io.minio.MinioClient;
-import org.springframework.boot.context.properties.ConfigurationProperties;
-import org.springframework.context.annotation.Bean;
-import org.springframework.stereotype.Component;
-
-@Component
-@ConfigurationProperties(prefix = "minio")
-public class MinioConfig {
-
- private String endpoint;
-
- private int port;
-
- private String accessKey;
-
- private String secretKey;
-
- private Boolean secure;
-
- private String bucketName;
-
- private String urlPrefix;
-
- @Bean
- public MinioClient getMinioClient(){
- String endpointUrl = "http://"+endpoint+":"+port;
- MinioClient minioClient = MinioClient.builder().endpoint(endpointUrl)
- .credentials(accessKey,secretKey)
- .build();
- return minioClient;
- }
-
- public String getEndpoint() {
- return endpoint;
- }
-
- public void setEndpoint(String endpoint) {
- this.endpoint = endpoint;
- }
-
- public int getPort() {
- return port;
- }
-
- public void setPort(int port) {
- this.port = port;
- }
-
- public String getAccessKey() {
- return accessKey;
- }
-
- public void setAccessKey(String accessKey) {
- this.accessKey = accessKey;
- }
-
- public String getSecretKey() {
- return secretKey;
- }
-
- public void setSecretKey(String secretKey) {
- this.secretKey = secretKey;
- }
-
- public Boolean getSecure() {
- return secure;
- }
-
- public void setSecure(Boolean secure) {
- this.secure = secure;
- }
-
- public String getBucketName() {
- return bucketName;
- }
-
- public void setBucketName(String bucketName) {
- this.bucketName = bucketName;
- }
-
- public String getUrlPrefix() {
- return urlPrefix;
- }
-
- public void setUrlPrefix(String urlPrefix) {
- this.urlPrefix = urlPrefix;
- }
-}
+//package com.gkhy.safePlatform.minioFile.config;
+//
+//import io.minio.MinioClient;
+//import org.springframework.boot.context.properties.ConfigurationProperties;
+//import org.springframework.context.annotation.Bean;
+//import org.springframework.stereotype.Component;
+//
+//@Component
+//@ConfigurationProperties(prefix = "minio")
+//public class MinioConfig {
+//
+// private String endpoint;
+//
+// private int port;
+//
+// private String accessKey;
+//
+// private String secretKey;
+//
+// private Boolean secure;
+//
+// private String bucketName;
+//
+// private String urlPrefix;
+//
+// @Bean
+// public MinioClient getMinioClient(){
+// String endpointUrl = "http://"+endpoint+":"+port;
+// MinioClient minioClient = MinioClient.builder().endpoint(endpointUrl)
+// .credentials(accessKey,secretKey)
+// .build();
+// return minioClient;
+// }
+//
+// public String getEndpoint() {
+// return endpoint;
+// }
+//
+// public void setEndpoint(String endpoint) {
+// this.endpoint = endpoint;
+// }
+//
+// public int getPort() {
+// return port;
+// }
+//
+// public void setPort(int port) {
+// this.port = port;
+// }
+//
+// public String getAccessKey() {
+// return accessKey;
+// }
+//
+// public void setAccessKey(String accessKey) {
+// this.accessKey = accessKey;
+// }
+//
+// public String getSecretKey() {
+// return secretKey;
+// }
+//
+// public void setSecretKey(String secretKey) {
+// this.secretKey = secretKey;
+// }
+//
+// public Boolean getSecure() {
+// return secure;
+// }
+//
+// public void setSecure(Boolean secure) {
+// this.secure = secure;
+// }
+//
+// public String getBucketName() {
+// return bucketName;
+// }
+//
+// public void setBucketName(String bucketName) {
+// this.bucketName = bucketName;
+// }
+//
+// public String getUrlPrefix() {
+// return urlPrefix;
+// }
+//
+// public void setUrlPrefix(String urlPrefix) {
+// this.urlPrefix = urlPrefix;
+// }
+//}
--
Gitblit v1.9.2