gpt4 book ai didi

java - 将图像上传到java spring

转载 作者:行者123 更新时间:2023-12-01 19:58:14 25 4
gpt4 key购买 nike

我正在尝试将图像从 postman 上传到 java spring Controller

@CrossOrigin(origins = "http://localhost:4200")
@RequestMapping(value = "/uploadfile", method = RequestMethod.POST)
public void handleFileUpload(@RequestParam("file") MultipartFile file) {
if (!file.isEmpty()) {
try .....

postman :

enter image description here enter image description here

但是我在 java 中收到此错误消息:

2019-11-24 18:46:48.861  WARN 4844 --- [nio-8088-exec-4] .w.s.m.s.DefaultHandlerExceptionResolver : Resolved [org.springframework.web.method.annotation.MethodArgumentTypeMismatchException: Failed to convert value of type 'java.lang.String' to required type 'java.lang.Integer'; nested exception is java.lang.NumberFormatException: For input string: "uploadFile"]

有人知道我做错了什么吗?我才刚刚开始,所以请不要因为询问而砍掉我的头!!

最佳答案

您有一个映射 /uploadfile 的方法,但调用不同的路径 - /uploadFile.

关于java - 将图像上传到java spring,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59020759/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com