Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/yingzhuo/minio-spring-boot-starter
spring-boot starter for minio.
https://github.com/yingzhuo/minio-spring-boot-starter
minio spring spring-boot
Last synced: 25 days ago
JSON representation
spring-boot starter for minio.
- Host: GitHub
- URL: https://github.com/yingzhuo/minio-spring-boot-starter
- Owner: yingzhuo
- License: apache-2.0
- Created: 2021-05-11T14:08:37.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2021-05-18T05:52:43.000Z (over 3 years ago)
- Last Synced: 2024-04-16T07:57:56.574Z (7 months ago)
- Topics: minio, spring, spring-boot
- Language: Java
- Homepage:
- Size: 63.5 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[![License](http://img.shields.io/badge/License-Apache_2-red.svg?style=flat)](http://www.apache.org/licenses/LICENSE-2.0)
[![JDK](http://img.shields.io/badge/JDK-v8.0-yellow.svg)](http://www.oracle.com/technetwork/java/javase/downloads/index.html)
[![Build](http://img.shields.io/badge/Build-Maven_2-green.svg)](https://maven.apache.org/)
[![Maven Central](https://img.shields.io/maven-central/v/com.github.yingzhuo/minio-spring-boot-starter.svg?label=Maven%20Central)](https://search.maven.org/search?q=g:%22com.github.yingzhuo%22%20AND%20a:%22minio-spring-boot-starter%22)# minio-spring-boot-starter
### 要求
* Java 8+
* SpringBoot 2.3.0+### 下载
* 推荐使用[maven](https://search.maven.org/search?q=minio-spring-boot-starter)
```xml
com.github.yingzhuo
minio-spring-boot-starter
${minio.starter.version}```
### 配置
```yaml
# application.ymlminio:
enabled: true
endpoint: "https://play.min.io"
access-key: "my-access-key"
secret-key: "my-secret-key"
bucket: "default"
```### 使用
请参考源代码:
* [BucketOperators.java](./src/main/java/com/github/yingzhuo/spring/boot/minio/operators/BucketOperators.java)
* [ObjectOperators.java](./src/main/java/com/github/yingzhuo/spring/boot/minio/operators/ObjectOperators.java)### 许可证
[Apache 2.0](./LICENSE)