依星源码资源网,依星资源网

 找回密码
 立即注册

QQ登录

只需一步,快速开始

【好消息,好消息,好消息】VIP会员可以发表文章赚积分啦 !
查看: 72|回复: 0

springboot中转存储,字节流byte[]方式上传,比如客户访问A服务器上传,再从A服务器转存到B服务器

[复制链接] 主动推送

1万

主题

1万

帖子

1万

积分

管理员

Rank: 9Rank: 9Rank: 9

积分
12008
发表于 2024-10-20 16:59:00 | 显示全部楼层 |阅读模式
springboot中转存储,比如客户访问A服务器上传,再从A服务器转存到B服务器,字节流byte[]方式上传
好的,如果要在  `transferFileToBServer`  方法中同样使用字节流( `byte[]` )进行转存,可以对代码进行如下修改。我们将把文件的字节流直接传递给 B 服务器,而不是先将其写入文件。
### 1. 文件上传到 A 服务器
这个部分与之前的代码相同,接收字节流并保存到本地。
  1. import org.springframework.web.bind.annotation.*;
  2. import java.io.FileOutputStream;
  3. import java.io.IOException;
  4. @RestController
  5. @RequestMapping("/upload")
  6. public class FileUploadController {
  7.     @PostMapping
  8.     public String handleFileUpload(@RequestBody byte[] fileBytes) {
  9.         // 定义保存文件的路径
  10.         String filePath = "/path/to/save/uploaded_file"; // 可以根据需要动态命名
  11.         try {
  12.             // 将字节数组写入文件
  13.             try (FileOutputStream fos = new FileOutputStream(filePath)) {
  14.                 fos.write(fileBytes);
  15.             }
  16.             // 调用转存方法
  17.             transferFileToBServer(fileBytes); // 直接传递字节数组
  18.             return "File uploaded successfully!";
  19.         } catch (IOException e) {
  20.             e.printStackTrace();
  21.             return "File upload failed!";
  22.         }
  23.     }
  24.      private void transferFileToBServer(byte[] fileBytes) {
  25.         // 这里实现将文件转存到 B 服务器的逻辑
  26.     }
  27. }
复制代码


### 2. 转存文件到 B 服务器
在  `transferFileToBServer`  方法中,我们直接使用传递的字节数组进行转存。
  1. import org.springframework.beans.factory.annotation.Autowired;
  2. import org.springframework.core.io.ByteArrayResource;
  3. import org.springframework.http.HttpEntity;
  4. import org.springframework.http.HttpHeaders;
  5. import org.springframework.http.HttpMethod;
  6. import org.springframework.http.ResponseEntity;
  7. import org.springframework.stereotype.Service;
  8. import org.springframework.web.client.RestTemplate;
  9. @Service
  10. public class FileTransferService {
  11.     @Autowired
  12.     private RestTemplate restTemplate;
  13.      public void transferFileToBServer(byte[] fileBytes) {
  14.         // 创建 ByteArrayResource
  15.         ByteArrayResource resource = new ByteArrayResource(fileBytes) {
  16.             @Override
  17.             public String getFilename() {
  18.                 return "uploaded_file"; // 设置文件名
  19.             }
  20.         };
  21.          // 设置请求头
  22.         HttpHeaders headers = new HttpHeaders();
  23.         headers.add("Content-Type", "application/octet-stream");
  24.          // 创建请求实体
  25.         HttpEntity<ByteArrayResource> requestEntity = new HttpEntity<>(resource, headers);
  26.          // 发送 POST 请求到 B 服务器
  27.         String bServerUrl = "http://B_SERVER_URL/upload"; // 替换为 B 服务器的 URL
  28.         ResponseEntity<String> response = restTemplate.exchange(bServerUrl, HttpMethod.POST, requestEntity, String.class);
  29.          // 处理响应
  30.         if (response.getStatusCode().is2xxSuccessful()) {
  31.             System.out.println("File transferred to B server successfully!");
  32.         } else {
  33.             System.out.println("Failed to transfer file to B server.");
  34.         }
  35.     }
  36. }
复制代码


### 3. 配置 RestTemplate
`RestTemplate`  的配置部分与之前相同。
  1. import org.springframework.context.annotation.Bean;
  2. import org.springframework.context.annotation.Configuration;
  3. import org.springframework.web.client.RestTemplate;
  4. @Configuration
  5. public class AppConfig {
  6.     @Bean
  7.     public RestTemplate restTemplate() {
  8.         return new RestTemplate();
  9.     }
  10. }
复制代码


### 总结
1. 在 A 服务器上实现接收字节流的接口,并将字节数组写入文件。
2. 直接将字节流传递给  `transferFileToBServer`  方法,并在该方法中将字节流转存到 B 服务器。
3. 确保 B 服务器有相应的接口来接收字节流。
这样就实现了将文件作为字节流上传和转存的功能。





下面是如何在 B 服务器上接收字节流并将其保存到硬盘的示例代码。我们将创建一个新的控制器来处理 B 服务器的文件上传请求。
### 1. 创建 B 服务器的文件接收接口
在 B 服务器上,你可以创建一个控制器来接收字节流并将其保存到硬盘。以下是一个简单的示例:
  1. import org.springframework.web.bind.annotation.*;
  2. import java.io.File;
  3. import java.io.FileOutputStream;
  4. import java.io.IOException;
  5. @RestController
  6. @RequestMapping("/upload")
  7. public class FileReceiveController {
  8.      @PostMapping
  9.     public String handleFileReceive(@RequestBody byte[] fileBytes) {
  10.         // 定义保存文件的路径
  11.         String filePath = "/path/to/save/received_file"; // 可以根据需要动态命名
  12.          try (FileOutputStream fos = new FileOutputStream(new File(filePath))) {
  13.             // 将字节数组写入文件
  14.             fos.write(fileBytes);
  15.             return "File received and saved successfully!";
  16.         } catch (IOException e) {
  17.             e.printStackTrace();
  18.             return "Failed to save the file!";
  19.         }
  20.     }
  21. }
复制代码


### 2. 解释代码
- ** `@RestController` **:标记这个类为 REST 控制器,能够处理 HTTP 请求。
- **`@RequestMapping("/upload") `**:指定请求的基本路径。
- **` @PostMapping `**:处理 POST 请求。
- **` @RequestBody byte[] fileBytes `**:将请求体中的字节流映射到 ` fileBytes ` 参数。
- **` FileOutputStream `**:用于将字节数组写入指定的文件路径。
- **异常处理**:捕获 ` IOException`,并打印错误信息。
### 3. 完整的流程
1. **A 服务器**:接收文件上传,将字节流保存到硬盘,并调用 B 服务器的接口,将字节流转存。
2. **B 服务器**:接收字节流并将其保存到硬盘。
确保 B 服务器的路径有写入权限,并根据需要调整文件命名逻辑。




要在 A 服务器上获取 B 服务器上传成功后的返回值,可以在调用 B 服务器的接口时,解析  `ResponseEntity`  对象中的响应内容。以下是如何实现的步骤:
### 1. 修改 A 服务器的转存方法
在 A 服务器的  `transferFileToBServer`  方法中,我们可以获取 B 服务器的响应并处理它。
  1. import org.springframework.beans.factory.annotation.Autowired;
  2. import org.springframework.core.io.ByteArrayResource;
  3. import org.springframework.http.HttpEntity;
  4. import org.springframework.http.HttpHeaders;
  5. import org.springframework.http.HttpMethod;
  6. import org.springframework.http.ResponseEntity;
  7. import org.springframework.stereotype.Service;
  8. import org.springframework.web.client.RestTemplate;
  9. @Service
  10. public class FileTransferService {
  11.     @Autowired
  12.     private RestTemplate restTemplate;
  13.      public void transferFileToBServer(byte[] fileBytes) {
  14.         // 创建 ByteArrayResource
  15.         ByteArrayResource resource = new ByteArrayResource(fileBytes) {
  16.             @Override
  17.             public String getFilename() {
  18.                 return "uploaded_file"; // 设置文件名
  19.             }
  20.         };
  21.          // 设置请求头
  22.         HttpHeaders headers = new HttpHeaders();
  23.         headers.add("Content-Type", "application/octet-stream");
  24.          // 创建请求实体
  25.         HttpEntity<ByteArrayResource> requestEntity = new HttpEntity<>(resource, headers);
  26.          // 发送 POST 请求到 B 服务器
  27.         String bServerUrl = "http://B_SERVER_URL/upload"; // 替换为 B 服务器的 URL
  28.         ResponseEntity<String> response = restTemplate.exchange(bServerUrl, HttpMethod.POST, requestEntity, String.class);
  29.          // 处理响应
  30.         if (response.getStatusCode().is2xxSuccessful()) {
  31.             String responseBody = response.getBody(); // 获取 B 服务器的响应内容
  32.             System.out.println("File transferred to B server successfully! Response: " + responseBody);
  33.         } else {
  34.             System.out.println("Failed to transfer file to B server. Status code: " + response.getStatusCode());
  35.         }
  36.     }
  37. }
复制代码


### 2. 解释代码
- ** `ResponseEntity<String> response` **: 发送请求后,接收 B 服务器的响应。
- ** `response.getBody()` **: 获取 B 服务器返回的响应内容。
- ** `System.out.println(...)` **: 打印 B 服务器的响应内容。
### 3. 完整流程
1. **A 服务器**: 接收文件上传,保存字节流,并调用 B 服务器的接口转存字节流。
2. **B 服务器**: 接收字节流并保存到硬盘,返回上传成功的消息。
3. **A 服务器**: 解析 B 服务器的响应,获取上传成功的消息并进行相应处理。
通过这种方式,A 服务器可以获取 B 服务器的上传成功后的返回值。

相关帖子

扫码关注微信公众号,及时获取最新资源信息!下载附件优惠VIP会员5折;永久VIP免费
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

免责声明:
1、本站提供的所有资源仅供参考学习使用,版权归原著所有,禁止下载本站资源参与商业和非法行为,请在24小时之内自行删除!
2、本站所有内容均由互联网收集整理、网友上传,并且以计算机技术研究交流为目的,仅供大家参考、学习,请勿任何商业目的与商业用途。
3、若您需要商业运营或用于其他商业活动,请您购买正版授权并合法使用。
4、论坛的所有内容都不保证其准确性,完整性,有效性,由于源码具有复制性,一经售出,概不退换。阅读本站内容因误导等因素而造成的损失本站不承担连带责任。
5、用户使用本网站必须遵守适用的法律法规,对于用户违法使用本站非法运营而引起的一切责任,由用户自行承担
6、本站所有资源来自互联网转载,版权归原著所有,用户访问和使用本站的条件是必须接受本站“免责声明”,如果不遵守,请勿访问或使用本网站
7、本站使用者因为违反本声明的规定而触犯中华人民共和国法律的,一切后果自己负责,本站不承担任何责任。
8、凡以任何方式登陆本网站或直接、间接使用本网站资料者,视为自愿接受本网站声明的约束。
9、本站以《2013 中华人民共和国计算机软件保护条例》第二章 “软件著作权” 第十七条为原则:为了学习和研究软件内含的设计思想和原理,通过安装、显示、传输或者存储软件等方式使用软件的,可以不经软件著作权人许可,不向其支付报酬。若有学员需要商用本站资源,请务必联系版权方购买正版授权!
10、本网站如无意中侵犯了某个企业或个人的知识产权,请来信【站长信箱312337667@qq.com】告之,本站将立即删除。
郑重声明:
本站所有资源仅供用户本地电脑学习源代码的内含设计思想和原理,禁止任何其他用途!
本站所有资源、教程来自互联网转载,仅供学习交流,不得商业运营资源,不确保资源完整性,图片和资源仅供参考,不提供任何技术服务。
本站资源仅供本地编辑研究学习参考,禁止未经资源商正版授权参与任何商业行为,违法行为!如需商业请购买各资源商正版授权
本站仅收集资源,提供用户自学研究使用,本站不存在私自接受协助用户架设游戏或资源,非法运营资源行为。
 
在线客服
点击这里给我发消息 点击这里给我发消息 点击这里给我发消息
售前咨询热线
312337667

微信扫一扫,私享最新原创实用干货

QQ|免责声明|小黑屋|依星资源网 ( 鲁ICP备2021043233号-3 )|网站地图

GMT+8, 2024-11-23 20:28

Powered by Net188.com X3.4

邮箱:312337667@qq.com 客服QQ:312337667(工作时间:9:00~21:00)

快速回复 返回顶部 返回列表