如何使用 curl 将 CSV 文件发布到 spring rest 端点

Posted

技术标签:

【中文标题】如何使用 curl 将 CSV 文件发布到 spring rest 端点【英文标题】:How to post a CSV file to a spring rest endpoint using curl 【发布时间】:2021-12-03 11:12:56 【问题描述】:

我正在尝试使用接受 csv 文件的 java spring 创建一个休息端点。

我的控制器如下所示:

界面:

package my.company.my.project.trms.controller;

import my.company.my.project.trms.controller.common.ControllerUrls.INBOX.CSV;
import org.springframework.http.ResponseEntity;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
import org.springframework.web.multipart.MultipartFile;

@RestController
@RequestMapping(CSV.BASE)
public interface CsvController 

  @PostMapping(produces = "text/csv", consumes = "text/csv")
  public ResponseEntity create(@RequestBody MultipartFile file);

*CSV.BASE 是一个包含我的端点 url 的静态最终字符串

实施:

package my.company.my.project.trms.controller;

import lombok.RequiredArgsConstructor;
import lombok.extern.slf4j.Slf4j;
import org.springframework.http.HttpStatus;
import org.springframework.http.ResponseEntity;
import org.springframework.web.bind.annotation.RestController;
import org.springframework.web.multipart.MultipartFile;

@Slf4j
@RequiredArgsConstructor
@RestController
public class CsvControllerImpl implements CsvController 

  @Override
  public ResponseEntity create(MultipartFile file) 
    String message = "";
    return ResponseEntity.status(HttpStatus.OK).body(message);
  

我想使用 git bash 在 windows pc 上执行以下 sh 脚本来测试这个端点:

#!/bin/bash
curl -X POST "http://localhost:8791/api/public/v1/inboxes/csv" -H "accept: */*" -H "Content-Type: text/csv" --data-binary @/c/Users/Schilling/Desktop/Test.csv

当我执行脚本时,我的控制器方法被调用。但是,设置断点显示参数“file”始终为空。

我怀疑 curl 脚本中文件路径的语法有问题,因此我尝试了一些方法,包括绝对路径和相对路径。 当然,错误也可能源自我的控制器类。

编辑:

将 -vv 选项添加到 curl 调用会产生以下输出:

Note: Unnecessary use of -X or --request, POST is already inferred.
* Uses proxy env variable no_proxy == '192.168.99.100'
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed
  0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0*   Trying 127.0.0.1:8791...
* TCP_NODELAY set
* Connected to localhost (127.0.0.1) port 8791 (#0)
> POST /api/public/v1/inboxes/csv HTTP/1.1
> Host: localhost:8791
> User-Agent: curl/7.65.3
> accept: */*
> Content-Type: text/csv
> Content-Length: 2036
> Expect: 100-continue
>
* Mark bundle as not supporting multiuse
< HTTP/1.1 100
 [2036 bytes data]
* We are completely uploaded and fine
100  2036    0     0  100  2036      0    221  0:00:09  0:00:09 --:--:--     0* Mark bundle as not supporting multiuse
< HTTP/1.1 200
< X-Content-Type-Options: nosniff
< X-XSS-Protection: 1; mode=block
< Cache-Control: no-cache, no-store, max-age=0, must-revalidate
< Pragma: no-cache
< Expires: 0
< X-Frame-Options: SAMEORIGIN
< Content-Type: text/csv;charset=UTF-8
< Content-Length: 0
< Date: Fri, 15 Oct 2021 12:37:43 GMT
<
100  2036    0     0  100  2036      0    203  0:00:10  0:00:09  0:00:01     0
* Connection #0 to host localhost left intact

【问题讨论】:

-VV 显示什么? @codebrane 感谢您的提示,我不知道这个 curl 选项的存在。请参阅上面编辑过的帖子。 curl 正在发送 Content-Type: text/csv 您的端点是否支持该内容类型? @codebrane 应该,至少我在映射注释中添加了 consumes = "text/csv"。 【参考方案1】:

我认为这应该可以正常工作: Content-Type: multipart/form-data 根据代码。

#!/bin/bash
curl -vv -F upload=@/c/Users/Schilling/Desktop/Test.csv "http://localhost:8791/api/public/v1/inboxes/csv"

【讨论】:

这个返回 415 响应码。我添加了 -H "Content-Type: text/csv" 到它,之后结果和之前一样:file = null 我也试过 -H "Content-Type: multipart/form-data" 啊,我忘记改参数名了。 curl -vv -F file=@/c/Users/Schilling/Desktop/Test.csv "http://localhost:8791/api/public/v1/inboxes/primedex-csv" -H "Content-Type: multipart/form-data" 在控制器中将消费更改为“multipart/form-data”后工作。

以上是关于如何使用 curl 将 CSV 文件发布到 spring rest 端点的主要内容,如果未能解决你的问题,请参考以下文章

如何逐行处理大型 CSV 文件?

如何将 curl -T 命令翻译为邮递员?

使用 API 的 XML 到 CSV 转换器

Perl 解析 csv 文件并迭代 curl

C++ cURL - 如何将完整的网页保存到文件中?

如何使用 Pandas 或 Requests 在 Python 中访问私有 Github Repo 文件 (.csv)