From bd4634e240ff004b524afc8cfe1007f4ca52a3c6 Mon Sep 17 00:00:00 2001
From: Administrator <admin>
Date: Mon, 11 Apr 2022 10:46:52 +0800
Subject: [PATCH] minio 连接地址修改

---
 src/main/java/org/springblade/modules/resource/endpoint/OssEndpoint.java |   24 ++++++++++++------------
 1 files changed, 12 insertions(+), 12 deletions(-)

diff --git a/src/main/java/org/springblade/modules/resource/endpoint/OssEndpoint.java b/src/main/java/org/springblade/modules/resource/endpoint/OssEndpoint.java
index 49f2d04..efe64d1 100644
--- a/src/main/java/org/springblade/modules/resource/endpoint/OssEndpoint.java
+++ b/src/main/java/org/springblade/modules/resource/endpoint/OssEndpoint.java
@@ -194,7 +194,7 @@
 	@PostMapping("/put-file-user-avatar")
 	public R putFileUserAvatar(@RequestParam MultipartFile file) {
 		//填写你文件上传的地址以及相应信息
-		String url = "http://223.82.109.183:2081";
+		String url = "http://61.131.136.25:2081";
 		String access = "zhbaadmin";
 		String secret = "zhbapassword";
 		String bucket = "zhba";
@@ -228,7 +228,7 @@
 		InputStream inputStream = file.getInputStream();
 		FtpUtil.uploadFile(FtpConfig.ftpHost, ftpPort, FtpConfig.ftpUserName, ftpPassword, ftpPath, "/", split[2], inputStream);
 		in.close();
-		String urls = "http://223.82.109.183:2081/zhba/" + newName;
+		String urls = "http://61.131.136.25:2081/zhba/" + newName;
 		//数据封装
 		Map<String, Object> map = new HashMap<>(2);
 		map.put("name", newName);
@@ -246,7 +246,7 @@
 	@PostMapping("put-file-app")
 	public R putFileApp(@RequestParam MultipartFile file) throws IOException, ServerException, InsufficientDataException, InternalException, InvalidResponseException, InvalidKeyException, NoSuchAlgorithmException, XmlParserException, ErrorResponseException {
 		//填写你文件上传的地址以及相应信息
-		String url = "http://223.82.109.183:2081";
+		String url = "http://61.131.136.25:2081";
 		String access = "zhbaadmin";
 		String secret = "zhbapassword";
 		String bucket = "zhba";
@@ -280,7 +280,7 @@
 		InputStream inputStream = file.getInputStream();
 		FtpUtil.uploadFile(ftpHost, ftpPort, ftpUserName, ftpPassword, ftpPath, "/", split[2], inputStream);
 		in.close();
-		String urls = "http://223.82.109.183:2081/zhba/" + newName;
+		String urls = "http://61.131.136.25:2081/zhba/" + newName;
 		return R.data(urls);
 	}
 
@@ -293,7 +293,7 @@
 	@PostMapping("put-files")
 	public R putFiles(@RequestParam MultipartFile file) throws IOException, ServerException, InsufficientDataException, InternalException, InvalidResponseException, InvalidKeyException, NoSuchAlgorithmException, XmlParserException, ErrorResponseException {
 		//填写你文件上传的地址以及相应信息
-		String url = "http://223.82.109.183:2081";
+		String url = "http://61.131.136.25:2081";
 		String access = "zhbaadmin";
 		String secret = "zhbapassword";
 		String bucket = "zhba";
@@ -327,7 +327,7 @@
 		InputStream inputStream = file.getInputStream();
 		FtpUtil.uploadFile(FtpConfig.ftpHost, ftpPort, FtpConfig.ftpUserName, ftpPassword, ftpPath, "/", split[2], inputStream);
 		in.close();
-		String urls = "http://223.82.109.183:2081/zhba/" + newName;
+		String urls = "http://61.131.136.25:2081/zhba/" + newName;
 		//数据封装
 		Map<String, Object> map = new HashMap<>(2);
 		map.put("name", newName);
@@ -346,7 +346,7 @@
 	public R putFileZip(@RequestParam MultipartFile file) throws Exception {
 		Map<String, Object> map = new HashMap<>(1);
 		//填写你文件上传的地址以及相应信息
-		String url = "http://223.82.109.183:2081";
+		String url = "http://61.131.136.25:2081";
 		String access = "zhbaadmin";
 		String secret = "zhbapassword";
 		String bucket = "zhba";
@@ -419,7 +419,7 @@
 						.headers(headers)
 						.build());
 
-				String urls = "http://223.82.109.183:2081/zhba/" + newName;
+				String urls = "http://61.131.136.25:2081/zhba/" + newName;
 				//内网
 				String inUrl = FtpConfig.ip + "/zhba/" + newName;
 				//取出身份证号,查询用户信息,更新用户信息
@@ -471,7 +471,7 @@
 	public R putFileExamPaymentZip(@RequestParam MultipartFile file) throws Exception {
 		Map<String, Object> map = new HashMap<>(1);
 		//填写你文件上传的地址以及相应信息
-		String url = "http://223.82.109.183:2081";
+		String url = "http://61.131.136.25:2081";
 		String access = "zhbaadmin";
 		String secret = "zhbapassword";
 		String bucket = "zhba";
@@ -525,7 +525,7 @@
 						.headers(headers)
 						.build());
 
-				String urls = "http://223.82.109.183:2081/zhba/" + newName;
+				String urls = "http://61.131.136.25:2081/zhba/" + newName;
 				//内网
 				String inUrl = FtpConfig.ip +"/zhba/"+ newName;
 				//取出身份证号,查询用户信息,更新用户信息
@@ -589,7 +589,7 @@
 	@PostMapping("put-files-talk")
 	public R putFilestak(@RequestParam MultipartFile file) throws IOException, ServerException, InsufficientDataException, InternalException, InvalidResponseException, InvalidKeyException, NoSuchAlgorithmException, XmlParserException, ErrorResponseException {
 		//填写你文件上传的地址以及相应信息
-		String url = "http://223.82.109.183:2081";
+		String url = "http://61.131.136.25:2081";
 		String access = "zhbaadmin";
 		String secret = "zhbapassword";
 		String bucket = "zhba";
@@ -625,7 +625,7 @@
 		InputStream inputStream = file.getInputStream();
 		FtpUtil.uploadFile(FtpConfig.ftpHost, ftpPort, FtpConfig.ftpUserName, ftpPassword, ftpPath, "/", split[2], inputStream);
 		in.close();
-		String urls = "http://223.82.109.183:2081/zhba/" + newName;
+		String urls = "http://61.131.136.25:2081/zhba/" + newName;
 		//数据封装
 		Map<String, Object> map = new HashMap<>(2);
 		map.put("name", newName);

--
Gitblit v1.9.3