Tagged articles
5 articles
Page 1 of 1
Top Architect
Top Architect
Mar 17, 2025 · Backend Development

Secure File Upload, Download, and Preview with MinIO and SpringBoot

This article demonstrates how to securely implement file upload, download, and preview in a SpringBoot application using MinIO, token validation, and base64‑encoded URLs, while also providing complete code snippets and practical usage notes for backend developers.

FileDownloadFileUploadTokenAuthentication
0 likes · 9 min read
Secure File Upload, Download, and Preview with MinIO and SpringBoot
Java Tech Enthusiast
Java Tech Enthusiast
Mar 2, 2025 · Backend Development

Simplify File Downloads in SpringBoot with a Single @Download Annotation

The Concept‑Download library lets SpringBoot developers replace verbose download code with a single @Download annotation that automatically handles classpath resources, local files, HTTP URLs, custom objects, compression and reactive streaming, simplifying batch and QR‑code ZIP exports.

FileDownloadJavaSpringBoot
0 likes · 8 min read
Simplify File Downloads in SpringBoot with a Single @Download Annotation
JD Cloud Developers
JD Cloud Developers
Dec 12, 2023 · Backend Development

Why @ResponseBody Fails When Writing Directly to the Output Stream in Spring

This article analyzes a Spring MVC issue where a batch template download failed due to missing configuration, explores how @ResponseBody interacts with manual stream writes, presents code examples, debugging insights, and offers best‑practice recommendations for reliable file‑download endpoints.

FileDownloadJavaResponseBody
0 likes · 5 min read
Why @ResponseBody Fails When Writing Directly to the Output Stream in Spring
Java Captain
Java Captain
May 24, 2018 · Backend Development

HttpServletResponse Usage: Sending Data, Managing Encoding, and Implementing File Downloads in Java Servlets

This article explains how HttpServletResponse represents server responses in Java web applications, covering methods for sending data, headers, and status codes, demonstrates outputting Chinese characters via OutputStream and PrintWriter, shows numeric output handling, and provides detailed examples of file download implementations with proper encoding considerations.

FileDownloadHttpServletResponseJava
0 likes · 19 min read
HttpServletResponse Usage: Sending Data, Managing Encoding, and Implementing File Downloads in Java Servlets