报错内容:

Request processing failed; nested exception is com.aliyun.oss.OSSException: The specified object is not valid.

com.aliyun.oss.OSSException: The specified object is not valid.
[ErrorCode]: InvalidObjectName

报错原因:是因为配置文件中的“objectName” 以 "/" 开头导致的报错。

  • file-dev.properties
  • # oss 上传相关信息 file.endpoint=oss-cn-beijing.aliyuncs.com file.bucketName=xxxxxx file.objectName=/image/face

    这里的 file.objectName 不能以 / 开头,应该修改为: file.objectName=image/face