SpringBoot集成Minio(接上文)

如果启动项目出现下面错误,把minio的版本更换为低版本的,我最初用的是8.5.7版本的出现下面错误,后面一直调低版本发现8.2.2,8.3.0都是可以的。(因为我需要用8.5.7的版本所以调了别的依赖的版本,大家可以根据自己的依赖进行调整)


***************************
APPLICATION FAILED TO START
***************************
Description:
An attempt was made to call a method that does not exist. The attempt was made from the following location:
    io.minio.S3Base.(S3Base.java:98)
The following method did not exist:
    okhttp3.RequestBody.create([BLokhttp3/MediaType;)Lokhttp3/RequestBody;
The calling method's class, io.minio.S3Base, was loaded from the following location:
 
    jar:file:/D:/Program%20Files/gradle-7.0/caches/modules-2/files-2.1/io.minio/minio/8.3.6/e6b8b7ac9f3e30f5d1b179ff3cc798d63cd2ba90/minio-8.3.6.jar!/io/minio/S3Base.class
 
The called method's class, okhttp3.RequestBody, is available from the following locations:
    jar:file:/D:/Program%20Files/gradle-7.0/caches/modules-2/files-2.1/com.squareup.okhttp3/okhttp/3.14.9/3e6d101343c7ea687cd593e4990f73b25c878383/okhttp-3.14.9.jar!/okhttp3/RequestBody.class
The called method's class hierarchy was loaded from the following locations:
 
    okhttp3.RequestBody: file:/D:/Program%20Files/gradle-7.0/caches/modules-2/files-2.1/com.squareup.okhttp3/okhttp/3.14.9/3e6d101343c7ea687cd593e4990f73b25c878383/okhttp-3.14.9.jar
 
 
Action:
 
Correct the classpath of your application so that it contains compatible versions of the classes io.minio.S3Base and okhttp3.RequestBody
 
Disconnected from the target VM, address: '127.0.0.1:63490', transport: 'socket'
 
Process finished with exit code 1

你可能感兴趣的:(spring,boot,后端,java)