0

How can we use minio storage as same as S3. Is there any need to change the code of java spring boot?. Previous codes are aws related. I don't want to change the code, But i want to access the storage from another source. Is that possible with minio.

AWS Coder
  • 455
  • 1
  • 8
  • 13

1 Answers1

0

I assume, that you are using the aws-java-sdk s3client. Therefore you just need to set the endpoint-configuration (for example http://localhost:9000, if minio runs on port 9000 on your local machine)

For more infos about the endpoint-configuration, you can look here

Marcel Herhold
  • 166
  • 1
  • 7