https://github.com/andikscript/fileupload
Simple upload & download file by using spring boot on static folder
https://github.com/andikscript/fileupload
Last synced: 12 months ago
JSON representation
Simple upload & download file by using spring boot on static folder
- Host: GitHub
- URL: https://github.com/andikscript/fileupload
- Owner: andikscript
- Created: 2022-07-19T06:18:08.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2022-08-03T14:03:26.000Z (over 3 years ago)
- Last Synced: 2025-01-30T00:41:22.361Z (about 1 year ago)
- Language: Java
- Homepage:
- Size: 9.86 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# File Upload - Spring Boot
Simple upload & download file by using spring boot on static folder
## Featured
- Spring Boot Web
- Upload and Download file (User & Admin)
- Max file size : 5 MB
- All type file can be upload
## API
### Admin
Methods | Url | Action | Body |
--- | --- | --- | --- |
| POST | /api/file/admin/upload | upload file admin | file |
| GET | /api/file/admin/files | get list and path store file admin | - |
| GET | /api/file/admin/download/{filename.extensions} | get and download file admin | - |
### User
Methods | Url | Action | Body |
--- | --- | --- | --- |
| POST | /api/file/user/upload | upload file user | file |
| GET | /api/file/user/files | get list and path store file user | - |
| GET | /api/file/user/download/{filename.extensions} | get and download file user | - |