Development and Implementation of a Chinese Animation Recommendation System Based on SpringBoot and Vue.js
System Overview
The rapid expansion of internet infrastructure and the global spread of anime culture has transformed the animation industry into a diverse entertainment domain. Anime enthusiasts exhibit strong interest in discovering preferred works, creating substantial demand for domestic animation recommendation systems. As the industry gro ...
Posted on Sat, 13 Jun 2026 16:05:46 +0000 by pug
Student Attendance System Using Spring Boot, Vue, and UniApp: Design and Implementation
System Overview
This student attendance system integrates a Spring Boot backend, a Vue-based web management interface, and a UniApp-powered WeChat Mini Program for mobile check-ins. The architecture supports real-time location verification, optional facial recognition, and role-based access control for administrators, teachers, and students.
Te ...
Posted on Sun, 07 Jun 2026 16:48:55 +0000 by mr. big
Getting Started with Thymeleaf in SpringBoot
Similar to how .NET MVC frameworks utilize Razor syntax with cshtml files for server-side code integration, SpringBoot offers comparable view rendering capabilities. When developing MVC applications with SpringBoot, developers can leverage template engines that provide functionality akin to Razor.
Spring Boot includes several template engines o ...
Posted on Sat, 06 Jun 2026 16:29:36 +0000 by dr-dre67
ActiveMQ with Spring Boot: Queue and Topic Messaging Patterns
Starting and Managing ActiveMQ
To start the ActiveMQ broker, execute:
activemq start
To stop it:
activemq stop
Access the web console at http://localhost:8161 using credentials admin/admin.
Message Models: Queue vs Topic
Queue (Point-to-Point)
In a queue model, each message is consumed by exactly one consumer. Messages are persisted to disk ( ...
Posted on Tue, 02 Jun 2026 16:36:20 +0000 by *Lynette
A Lightweight Code Generation Tool for SpringBoot and Vue Applications
Overview
A versatile scaffolding solution built with SpringBoot and Vue3 designed for rapid application development.
This project serves as a foundational template for both front end and backend systems, offering automated code generation capabilities for SpringBoot and Vue applications. It's an evolving open-source initiative crafted by develo ...
Posted on Wed, 27 May 2026 18:03:56 +0000 by like_php
Thymeleaf Template Resolution Issues in Spring Boot 3.4.3 with Custom WebMvcConfigurer
When configuring Thymeleaf in Spring Boot 3.4.3 with JDK 17, developers may encounter unexpected template resolution failures when packaging the application as a JAR — even though everything works flawlessly in IDE environments like IntelliJ or Eclipse.
This issue typically surfaces when a custom configuration class implements WebMvcConfigurer. ...
Posted on Tue, 26 May 2026 17:12:53 +0000 by Threehearts
Full-Stack Application Development with Spring Boot, Vue, and Uni-app
Modern full-stack development often requires a seamless integration of robust backend services and responsive frontend interfaces. This architecture leverages Spring Boot for the backend, Vue.js for the web interface, and Uni-app for cross-platform mobile support.
Core Technology Stack
Spring Boot: Provides a streamlined environment for buildi ...
Posted on Wed, 20 May 2026 01:00:46 +0000 by filippe
Auction Management System Design and Implementation Using SpringBoot and Vue
System Overview
This article presents a secure and user-friendly auction management system designed to simplify the process of finding and managing auction items. The system focuses on providing a streamlined experience for users while maintaining robust administrative capabilities. Built using Java with the SpringBoot framework and MySQL datab ...
Posted on Tue, 19 May 2026 23:58:08 +0000 by hmvrulz
Spring Boot Global Exception Handling with Custom and System Exceptions
Custom Exception Class
A custom exception extends RuntimeException to carry structured error details such as error codes and messages.
@Data
public class BusinessException extends RuntimeException {
private String code;
private String message;
public BusinessException() {
super();
}
public BusinessException(String ...
Posted on Sun, 17 May 2026 14:20:13 +0000 by varghesedxb
Implementing Nearby Search and Tinder-like Features
Location Reporting
When the client detects a user's geographic location, it reports to the server if the locasion changes by more than 500 meters or every 5 minutes. User locasion data is stored in Elasticsearch.
Dubbo Service
User location functionality is implemented in a new project called my-tanhua-dubbo-es.
POM Configuration
<dependenci ...
Posted on Sat, 16 May 2026 10:42:54 +0000 by TheUkSniper