Implementing Chunked File Downloads with Spring Boot and Vue.js
To support resumable and chunked downloads, the file server must handle HTTP Range requests. We configure Nginx as a reverse proxy in front of FastDFS, enabling the slice module for efficient caching of range requests.
Installing Nginx with Slice Module:
The slice module is required for splitting large files into smaller pieces during caching. ...
Posted on Sun, 16 Aug 2026 16:51:18 +0000 by ahmadmunif
Getting Started with ActiveMQ
Introduction
ActiveMQ is an open-source message broker developed by Apache, widely recognized as one of the most popular and powerful messaging systems. It fully supports the JMS 1.1 and J2EE 1.4 specifications, and although the JMS specification has been around for a while, it still plays a crucial role in modern J2EE applications.
Features
S ...
Posted on Wed, 12 Aug 2026 16:34:22 +0000 by HSKrustofsky
Building a Campus Store Cashier Application with Spring Boot and Vue
Backend Framework: Spring BootSpring Boot is designed to streamline the creation of stand-alone, production-grade Spring applications. By prioritizing convention over configuration, it significantly reduces the complexity of setup. Developers can launch applications instantly using embedded servers like Tomcat without deploying external WAR fil ...
Posted on Tue, 11 Aug 2026 17:03:11 +0000 by keeve
Java Integration with Alipay Sandbox for QR Code Payments
Environment Prerequisites
Access the Alipay Developer Platform and navigate to the Sandbox environment through the console. Locate the Sandbox Applications section to retrieve essential credentials including the Application ID, Gateway URL, and cryptographic keys. Download the Sandbox Wallet application for mobile testing and note the test merc ...
Posted on Tue, 11 Aug 2026 16:27:59 +0000 by bagnallc
Integrating Alibaba Cloud Commercial RocketMQ with Spring Boot
1. Prerequisites in Alibaba Cloud
Before integration, provision a commercial RocketMQ instance and create the flolowing resources:
Standard topic and consumer group for plain messages.
Dedicated delay topic and cosnumer group for scheduled/delay messages.
2. Project Structure
The example follows a typical Spring Boot project layout; configura ...
Posted on Tue, 11 Aug 2026 16:25:40 +0000 by devai
Building a Senior Health Examination and Disease Prevention System with Spring Boot
Project Overview
As global demographics skew towards aging populations, efficient health tracking for seniors becomes critical. Traditional offline record-keeping lacks cohesion and accessibility, while older adults often miss crucial preventative care information. To bridge this gap, this document outlines the engineering of a Spring Boot-driv ...
Posted on Mon, 10 Aug 2026 16:45:03 +0000 by jimpat
Streamlining API Documentation with Knife4j and Spring Boot 3
Knife4j is an enhanced API documentation tool built on top of Swagger for Java MVC applications. It evolved from the swagger-bootstrap-ui project and aims to be a compact yet powerful utility, offering a polished user interface and integrated debugging capabilities.
Two pivotal features define its utility:
Auto-generated documentation: Followi ...
Posted on Mon, 10 Aug 2026 16:41:36 +0000 by Rayhan Muktader
Integrating GraphQL with Spring Boot Applications
GraphQL provides a flexilbe approach to API design, allowing clients to request exactly the data they need. This guide walks through setting up GraphQL in a Spring Boot environment with practical examples.
Project Configuration
Create a new Spring Boot project and include the following dependencies in your pom.xml:
<dependency>
<gr ...
Posted on Mon, 10 Aug 2026 16:11:53 +0000 by deregular
Mastering Spring Boot Configuration Files: Properties, YAML, and Binding Strategies
Application Configuration Management
Spring Boot externalizes application settings to decouple runtime behavior from compiled code. Configuration files dictate critical parameters such as network ports, database credentials, third-party API tokens, logging thresholds, and framework-specific behaviors. By standardizing how these values are store ...
Posted on Sun, 09 Aug 2026 16:40:19 +0000 by mpf
Common Java and Web Development Troubleshooting Guide
JDBC Driver Deprecation and Compatibility
When initializing a MySQL connection, you may encounter a warning stating that com.mysql.jdbc.Driver is deprecated. The recommended class is now com.mysql.cj.jdbc.Driver, and manual loading is generally unnecessary due to SPI. However, if you are forced to switch versions due to environment constraints, ...
Posted on Fri, 07 Aug 2026 16:42:22 +0000 by PrObLeM