Fading Coder

One Final Commit for the Last Sprint

Design and Implementation of an Alumni Association WeChat Mini Program Based on SpringBoot, Vue and uni-app

Tech Stack Backend: Spring Boot Spring Boot comes with embedded application servers including Tomcat, Jetty and Undertow out of the box, eliminating the need for manual server installation and configuration. Its core advantage is auto-configuration, which automatically sets up the application based...

Architecting a Community-Based Smart Elderly Care Management Platform using Java and Vue.js

System Architecture and Design Efficient management of elderly care communities requires robust data processing pipelines and strict access control. A centralized solution addresses inconsistencies in manual record-keeping, optimizes workflow efficiency, and secures sensitive health information. The...

Building a Secure File Upload Service with Spring Boot and JWT Authentication

In modern web applications, file upload functionality serves as a critical component for various use cases. This article demonstrates how to implement a robust and secure file upload service using Spring Boot, handling batch uploads, JWT-based authentication, and persistent storage. Service Implemen...

Integrating Qiniu Cloud Storage in a Spring Boot Application

Maven DependencyAdd the Qiniu Java SDK to your project's pom.xml:<dependency> <groupId>com.qiniu</groupId> <artifactId>qiniu-java-sdk</artifactId> <version>7.15.1</version> </dependency>Application ConfigurationStore your Access Key and Secret Key with...

Design and Implementation of a Subdistrict Office Management System Using Spring Boot and Vue.js

The14subdistrict management platform adopts a role‑based architecture, splitting functionality between administrators and residents. The system is built around the Spring Boot framwork and follows the MVC pattern, with a MySQL database providing back‑end storage and Vue.js powering the front‑end use...

Developing RESTful Endpoints with Spring WebMVC

Constructing the web service layer is a fundamental task when building Spring Boot applications. Most modern internet systems rely on exposing various endpoints via HTTP. To meet these needs, Spring Boot provides several specialized solutions for creating lightweight web services. The first approach...

Building a Blog with Image Upload Using Spring Boot and Vue.js

This article provides a complete solution for implementing image upload, storage, and display in a blog built with Spring Boot and Vue.js. It covers configuring an image server on a cloud instance, the backend API, the frontend component, and database storage. 1. Image Server Setup (Ubuntu) 1.1 Opti...

Monitoring Microservices with Spring Boot Admin and Spring Cloud

Spring Boot Admin provides a web-based management interface for Spring Boot applications. Built on top of Spring Boot Actuator, it offers a visual dashboard for monitoring application health, metrics, and configurations. Key capabilities include:Application status and version trackingLog level manag...

Configuring Multiple Data Sources with Pagination in Spring Boot using MyBatis, Druid, and PageHelper

Druid Connection Pool Integration Druid is a robust JDBC connection pool developed by Alibaba, offering prodcution-grade stability and built-in monitoring capabilities. It includes a filter-chain plugin system, efficient pool management, and SQL parsing utilities. Add the dependency to your project:...

Design and Implementation of an Inventory Management System for Campus Supermarkets Using Java

Technology Stack Backend with Spring Boot Framework Spring Boot facilitates rapid development of applications based on the Spring framework through a philosophy prioritizing convention over configuration. It reduces setup complexity by offering sensible defaults, minimizing the need for extensive XM...