Spring Boot开发中利用postman图片上传提示Required request part 'file' is not present
一、问题
在完成实现上传图片的方法后,利用Postman软件进行模拟http上传图片,但出现下面错误:
400Error,Required request part 'file' is not present
二、解决办法
在key里面选择File之后,还要手动输入file,使得file参数与Controller里面的@RequestParam里面的file对应,上传成功!
参考博客:https://blog.****.net/qq_37495786/article/details/83860110