Chunked File Upload Implementation with Vue.js and Spring Boot

File Hashing Strategy To establish file uniqueness, implement an MD5 hash calculation using a sampling approach. This method processes the entire first and last chunks while sampling portions of intermediate chunks: async generateFileHash(chunks) { return new Promise(resolve => { const hasher = new SparkMD5.ArrayBuffer(); const sam ...

Posted on Mon, 15 Jun 2026 17:19:58 +0000 by brandond

Implementing Chunked Upload, Instant Transfer, and Resume Functionality with Spring Boot and MinIO

To enible chunked upload, instant transfer, and resume capabilities using Spring Boot with MinIO, follow these implementation steps: Add the MinIO dependency to your pom.xml configuration: <dependency> <groupId>io.minio</groupId> <artifactId>minio</artifactId> <version>8.3.0</version> </d ...

Posted on Sat, 09 May 2026 11:12:18 +0000 by davissj