Extending SpringBootCodeGenerator with Custom Parsers and Freemarker Templates
Introduction to Extension Architecture
SpringBootCodeGenerator is a robust utility built on Spring Boot 2 and Freemarker, designed to automate Java code creation from database schemas or structured data. While it supports standard inputs like MySQL, Oracle, and PostgreSQL DDL, complex projects often require custom data ingestion methods or spec ...
Posted on Tue, 22 Sep 2026 16:06:18 +0000 by sheraz
Distributed Locking with Redis Cluster Using Redisson
To implement distributed locking in a Redis cluster environment, we leverage Redisson, a Java-based client that simplifies working with Redis in distributed systems.
Environment Setup
Component
Version
Spring Boot
2.0.3.RELEASE
Spring Cloud
Finchley.RELEASE
Redis
4.0.11
JDK
1.8.x
Maven Dependencies
<parent>
<groupId ...
Posted on Mon, 21 Sep 2026 16:24:29 +0000 by NTFS
Design and Implementation of a Fan Support System Based on SpringBoot, Vue, and Uniapp WeChat Mini Program
Introduction
A fan support system is a platform designed to help fans organize and participate in activities supporting their idols. This article details the design and implementation of such a system using SpringBoot for the backend, Vue for the front end web interface, and Uniapp for the WeChat Mini Program client.
System Demonstration
Detail ...
Posted on Sun, 20 Sep 2026 16:36:00 +0000 by t_miller_3
Integrating Swagger UI in a Spring Boot Application
<properties>
<springfox.version>2.6.1</springfox.version>
</properties>
<dependencies>
<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-swagger2</artifactId>
<version>${springfox.version}</version>
</dependency>
< ...
Posted on Wed, 16 Sep 2026 16:25:38 +0000 by natalieG
Implementing Menu Page Navigation in a Spring Boot and Vue Project Using Routing
Students, we have already completed the setup and configuration of the front-end and back-end projects. Next, we will first build the front-end page framework, then create the back-end interface framework, and finally implement each functional module through front-end and back-end interaction. Step by step, I will guide you to create your own g ...
Posted on Sun, 13 Sep 2026 16:53:24 +0000 by Guardian2006
SpringBoot Vue.js Uniapp Resource Sharing Platform Development Guide
Detailed Video Demonstration
Contact the author for access to more detailed demonstration videos.
Specific Implementation Screenshots
Included in the documentation.
Technology Stack
Backend Framework: SpringBoot
Spring Boot, built on the Spring Framework, offers several advantages. It includes embedded servers like Tomcat, Jetty, and Undertow, ...
Posted on Sat, 12 Sep 2026 16:22:04 +0000 by prosolutions
Java-Based Blog System Architecture and Deployment
Technical Architecture
Backend Implementation with Spring Boot
Spring Boot acccelerates application development through convention-over-configuration principles. Its auto-configuration mechanism minimizes manual setup by intelligently detecting project dependencies. The framework integrates seamlessly with Maven/Gradle build tools and offers st ...
Posted on Sat, 12 Sep 2026 16:07:05 +0000 by Elemen7s
Design and Implementation of a News Information System Using SpringBoot, Vue, and Uniapp-Based Mini Programs
Architecture and Technical Choices
The news information system adopts a separated frontend and backend architecture. The server side relies on SpringBoot for API development, session management, and business logic processing. The web admin panel is built with Vue, while the client side uses a Uniapp framework to deliver a cross-platform WeChat ...
Posted on Thu, 10 Sep 2026 16:45:40 +0000 by drisate
End-to-End Workflow for Migrating Java Applications to Kubernetes
Prerequisites and Environment Setup
Begin by verifying network connectivity between your build environment and the target database. Install the required Java Development Kit (JDK) and Maven compiler toolchain using your system's package manager.
sudo yum install java-11-openjdk-devel maven -y
Application Configuration and Compilation
Update t ...
Posted on Tue, 08 Sep 2026 16:32:16 +0000 by damienmcd
Online Document Preview with kkFileView: A Practical Guide
kkFileView is an open-source, Spring Boot-based document preview system designed for seamless online viewing of common file formats. With over 9.9k stars on GitHub, it supports a wide range of document types including DOC, DOCX, XLS, XLSX, PPT, PPTX, PDF, TXT, ZIP, RAR, as well as images, audio, and video files.
Docker Deployment
Deploying kkFi ...
Posted on Mon, 07 Sep 2026 16:12:15 +0000 by petebolduc