Cross-Origin Knowledge Every Backend Engineer Should Know
Cross-origin resource sharing (CORS) is a topic that backend engineers often find both familiar and confusing.
Over the past two months, I have been involved in incubating an educational product as an architect, which gave me an unforgettable journey into cross-origin issues.
This article shares my experiences and thoughts on cross-origin knowl ...
Posted on Thu, 27 Aug 2026 16:34:58 +0000 by pluto
Mastering Request Parameter Validation with Spring Boot 2.x
When writing backend services, we often face a common problem: how to ensure incoming parameters are valid. If you're still using numerous if/else statements for validation, you've probably experienced the pain of maintaining such code. Don't worry—here's a clean and efficient solution: using Spring Boot 2.x and the JSR-303 stendard to implemen ...
Posted on Tue, 25 Aug 2026 16:07:09 +0000 by miksel
Design and Implementation of a Warehouse Management System for Agricultural Machinery Parts Using Spring Boot and Vue.js
System Overview
A warehouse management system for agricultural machinery parts offers significant advantages in terms of operational fluidity, data consistency, and scalability. This design enables efficient handling of product catalogs, procurement, inbound/outbound logistics, and supplier relations.
Core Technologies
Primary Language: Java
Ba ...
Posted on Sun, 23 Aug 2026 16:36:37 +0000 by PHP Man
Architecting a Comprehensive Hospital Resource Administration Platform with Spring Boot and Vue.js
System Overview
Modern healthcare facilities require efficient digital infrastructure to manage assets, scheduling, and personnel allocation. Legacy manual tracking introduces high error rates, security vulnerabilities, and operational bottlenecks. This platform addresses these challenges by centralizing resource tracking through a web-based ar ...
Posted on Sun, 23 Aug 2026 16:12:42 +0000 by searchman
Custom Pagination with MyBatis-Plus in Spring Boot
This guide demonstrates how to implement custom pagination queries using MyBatis-Plus within a Spring Boot application.
Project Setup and Dependencies
Ensure your project includes the necessary dependencies in your pom.xml:
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<a ...
Posted on Fri, 21 Aug 2026 16:50:24 +0000 by TweetyPie
Resolving Common Issues in Spring Boot and MyBatis Integration
Integration Steps
To integrate MyBatis with a Spring Boot project, start by adding necessary dependencies to your pom.xml:
<dependencies>
<!-- MySQL Driver -->
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>8.0.33</ve ...
Posted on Thu, 20 Aug 2026 16:39:17 +0000 by temidayo
Building Scalable Socket.IO Microservices on Kubernetes
Integrating Socket.IO with Spring Boot
The core server uses the Netty-based Socket.IO server implementation for Java. The Maven deppendency is:
<dependency>
<groupId>com.corundumstudio.socketio</groupId>
<artifactId>netty-socketio</artifactId>
<version>1.7.19</version>
</dependency>
...
Posted on Wed, 19 Aug 2026 16:22:41 +0000 by simplyi
Integrating Dubbo Admin with Spring Boot for Service Management
Setting Up Dubbo Admin for Service Management
Dubbo Admin serves as a web-based management tool for monitoring and administering Dubbo services in distributed environments. It offers features such as service registration, real-time monitoring, dynamic configuration, and visualization of service dependencies.
Installation Steps
Clone the Repos ...
Posted on Wed, 19 Aug 2026 16:21:22 +0000 by lokesh_kumar_s
Java Web Application Integration with MinIO Object Storage
Introduction
MinIO is an open source object storage solution comptaible with Amazon S3 APIs. It's designed for storing unstructured data such as images, videos, audio files, and logs, with support for objects up to 5TB in size.
Dependencies
Add the following dependencies to your project:
<dependency>
<groupId>io.minio</groupI ...
Posted on Tue, 18 Aug 2026 16:51:45 +0000 by novice4eva
Smart Warehouse System Development with Spring Boot, Vue.js, and UniApp
This article outlines the design and implementation of a smart warehouse management system built using a modern technology stack. The backend is powered by Spring Boot, the web frontend leverages Vue.js, and a mobile application is developed with UniApp, providing a comprehensive solution for efficient warehouse operations.
Backend Framework: S ...
Posted on Mon, 17 Aug 2026 16:18:41 +0000 by jefkin