東坡下載:內(nèi)容最豐富最安全的下載站!

首頁(yè)IT技術(shù)軟件教程 → Spring Cloud Feign的文件上傳實(shí)現(xiàn)

Spring Cloud Feign的文件上傳實(shí)現(xiàn)

相關(guān)文章發(fā)表評(píng)論 來(lái)源:本站整理時(shí)間:2018/5/31 11:09:21字體大。A-A+

更多

作者:專題點(diǎn)擊:231次評(píng)論:0次標(biāo)簽: 文件上傳

在Spring Cloud封裝的Feign中并不直接支持傳文件,但可以通過引入Feign的擴(kuò)展包來(lái)實(shí)現(xiàn),本來(lái)就來(lái)具體說說如何實(shí)現(xiàn)。

服務(wù)提供方(接收文件)

服務(wù)提供方的實(shí)現(xiàn)比較簡(jiǎn)單,就按Spring MVC的正常實(shí)現(xiàn)方式即可,比如:

@EnableFeignClients
@EnableDiscoveryClient
@SpringBootApplication
public class Application {

   @RestController
   public class UploadController {

       @PostMapping(value = "/uploadFile", consumes = MediaType.MULTIPART_FORM_DATA_VALUE)
       public String handleFileUpload(@RequestPart(value = "file") MultipartFile file) {
           return file.getName();
       }

   }

   public static void main(String[] args) {
       new SpringApplicationBuilder(Application.class).web(true).run(args);
   }

}
   

服務(wù)消費(fèi)方(發(fā)送文件)

在服務(wù)消費(fèi)方由于會(huì)使用Feign客戶端,所以在這里需要在引入feign對(duì)表單提交的依賴,具體如下:

<dependency>
  <groupId>io.github.openfeign.form</groupId>
  <artifactId>feign-form</artifactId>
  <version>3.0.3</version>
</dependency>
<dependency>
  <groupId>io.github.openfeign.form</groupId>
  <artifactId>feign-form-spring</artifactId>
  <version>3.0.3</version>
</dependency>
<dependency>
  <groupId>commons-fileupload</groupId>
  <artifactId>commons-fileupload</artifactId>
  <version>1.3.3</version>
</dependency>
   

定義文件上傳方的應(yīng)用主類和FeignClient,假設(shè)服務(wù)提供方的服務(wù)名為eureka-feign-upload-server

@EnableFeignClients
@EnableDiscoveryClient
@SpringBootApplication
public class Application {

   public static void main(String[] args) {
       new SpringApplicationBuilder(Application.class).web(true).run(args);
   }

}

@FeignClient(value = "upload-server", configuration = UploadService.MultipartSupportConfig.class)
public interface UploadService {

   @PostMapping(value = "/uploadFile", consumes = MediaType.MULTIPART_FORM_DATA_VALUE)
   String handleFileUpload(@RequestPart(value = "file") MultipartFile file);

   @Configuration
   class MultipartSupportConfig {
       @Bean
       public Encoder feignFormEncoder() {
           return new SpringFormEncoder();
       }
   }

}
   

在啟動(dòng)了服務(wù)提供方之后,嘗試在服務(wù)消費(fèi)方編寫測(cè)試用例來(lái)通過上面定義的Feign客戶端來(lái)傳文件,比如:

@Slf4j
@RunWith(SpringJUnit4ClassRunner.class)
@SpringBootTest
public class UploadTester {

   @Autowired
   private UploadService uploadService;

   @Test
   @SneakyThrows
   public void testHandleFileUpload() {

       File file = new File("upload.txt");
       DiskFileItem fileItem = (DiskFileItem) new DiskFileItemFactory().createItem("file",
               MediaType.TEXT_PLAIN_VALUE, true, file.getName());

       try (InputStream input = new FileInputStream(file); OutputStream os = fileItem.getOutputStream()) {
           IOUtils.copy(input, os);
       } catch (Exception e) {
           throw new IllegalArgumentException("Invalid file: " + e, e);
       }

       MultipartFile multi = new CommonsMultipartFile(fileItem);

       log.info(uploadService.handleFileUpload(multi));
   }

}    


擴(kuò)展知識(shí)

相關(guān)評(píng)論

閱讀本文后您有什么感想? 已有 人給出評(píng)價(jià)!

  • 2791 喜歡喜歡
  • 2101 頂
  • 800 難過難過
  • 1219 囧
  • 4049 圍觀圍觀
  • 5602 無(wú)聊無(wú)聊
熱門評(píng)論
最新評(píng)論
發(fā)表評(píng)論 查看所有評(píng)論(0)
昵稱:
表情: 高興 可 汗 我不要 害羞 好 下下下 送花 屎 親親
字?jǐn)?shù): 0/500 (您的評(píng)論需要經(jīng)過審核才能顯示)