Fading Coder

One Final Commit for the Last Sprint

Integrating Kafka and Storm with Spring Boot

Kafka and Storm Overview If you are familiar with Kafka and Storm, you can skip this section. If not, you can refer to my previous blog posts. Environment Setup for Kafka and Storm Link: http://www.panchengming.com/2018/01/26/pancm70/ Usage of Kafka Link: http://www.panchengming.com/2018/01/28/pancm...

Building a Custom Spring Boot Starter for Global API Encryption

Spring Boot Starters simplify dependency management and configuration by bundling related libraries into cohesive modules. Creating custom starters enables teams to standardize cross-cutting concerns like security, logging, and data transformation across distributed systems. Auto-Configuration Funda...

Minimalist Spring Security 6 + Front-Back Separation Implementation: Focus on Understanding Workflow

Minimalist Spring Security 6 + Front-Back Separation Implementation: Focus on Understanding Workflow Spring Security is relatively simple to use in Spring MVC, with built-in login, logout pages, session management, etc. However, how to implement a front-back separated project with Spring Security is...

Employee Management System Built with Spring Boot, Vue, and UniApp

The system employs a modern full-stack architecture combining Spring Boot for the backend, Vue.js for the web frontend, and UniApp for cross-platform mobile deployment. Backend: Spring Boot Spring Boot simplifies server-side development by embedding application servers like Tomcat and offering auto-...

Java-Based E-Commerce Platform for Mobile Devices: Architecture and Implementation

Technical Architecture Backend Framework: Spring Boot Spring Boot is an open-source framework designed for rapid development of applications based on the Spring framework. It follows the convention over configuration principle, providing default configurations that allow developers to focus on busin...

Design and Implementation of a Taxi Management System with Spring Boot and Vue.js

Technical Framework Backend: Spring Boot Spring Boot is an open-source framework designed for rapid development of Spring-based applications. It embraces the principle of convention over configuration, offering a set of default settings that allow developers to concentrate on business logic rather t...

Developing an Online Matchmaking Service Using Spring Boot and Vue

The system offers a complete solution for managing matchmaking-related activities, including wedding company listings, booking and favoriting, marriage case studies with bookmarking, user profiles, matchmaking interactions such as messages and favorites, and administrative tools. It is implemented w...

Implementing a Parking Space Short-Term Rental Billing System with Java SSM and Vue

Technical Architecture Backend Framework: Spring Boot Spring Boot simplifies the development of production-ready Spring applications through convention-over-configuration principles. It eliminates boilerplate code through auto-configuration while maintaining Spring's core functionality. The framewor...

Setting Up TkMyBatis in Spring Boot Applications

Maven Dependency Add the following dependency to your pom.xml file: <dependency> <groupId>tk.mybatis</groupId> <artifactId>mapper-spring-boot-starter</artifactId> <version>2.1.5</version> </dependency> Deifning Mappper Interfaces Create mapper interfac...

Chuzhou Local Products E-commerce Platform Using Spring Boot, Vue.js, and UniApp

Technology Stack Backend with Spring Boot Spring Boot simplifies application development by offering auto-configuration and embedded server support. Below is an example of a minimal REST controller implementation: import org.springframework.boot.SpringApplication; import org.springframework.boot.aut...