Using Elasticsearch with Spring Boot: Setup and Configuration
1. Installation
Elasticsearch's compatibility with Spring Boot versions is critical; ensure you download the correct version based on your project's Spring Boot and Spring Framework versions.
To find the appropriate version, check the versions used in your project and then proceed to download from the official Elastic website:
Download link: ht ...
Posted on Sat, 05 Sep 2026 16:45:43 +0000 by pankirk
Building RESTful CRUD Services with Spring Boot and MyBatis
Environment Setup
Database Schema
Create a MySQL database named springboot and a table t_user to hold user records.
CREATE DATABASE `springboot`;
USE `springboot`;
DROP TABLE IF EXISTS `t_user`;
CREATE TABLE `t_user` (
`id` INT(11) NOT NULL AUTO_INCREMENT COMMENT 'Primary Key',
`name` VARCHAR(10) DEFAULT NULL COMMENT 'User name',
`age` ...
Posted on Fri, 04 Sep 2026 16:48:03 +0000 by krishnam1981
MapleBoot Open-Source Project Startup and Deployment Tutorial
Lightweight Rapid Development Scaffold
A lightweight rapid development scaffolding built with SpringBoot and Vue3. This is a universal full-stack project template for quickly building management systems, with built-in code generation capabilities for SpringBoot and Vue projects, and is an actively maintained open-source collaborative project.
O ...
Posted on Fri, 04 Sep 2026 16:09:45 +0000 by henrygao
SpringBoot Application Packaging and Deployment Guide
This guide covers SpringBoot packaging configurations and deployment procedures with solutions for common issues.
Maven-Based Packaging
JAR Package Configuration
In pom.xml, specify the packaging type:
<packaging>jar</packaging>
WAR Package Configuration
For WAR deployment in external Tomcat, configure in pom.xml:
<packaging> ...
Posted on Wed, 02 Sep 2026 16:34:46 +0000 by fdost
Implementing Message Queues with Redis Streams
Redis Streams, introduced in Redis 5.0, provide a persistent append-only log data structure ideal for message queue implementations. Each stream consists of multiple entries with unique identifiers and associated field-value pairs.
Core Concepts
A Redis Stream maintains several key components:
Consumer Groups: Logical groupinsg of consumers th ...
Posted on Wed, 02 Sep 2026 16:25:33 +0000 by ari_aaron
SparkMovie Novel Website Built with SpringBoot Vue and UniApp Full Source Code Available
This project presents a complete movie and novel information website designed using SpringBoot, Vue (frontend), and UniApp (mobile). It includes full source code, deployment documentation, and an explanatory guide. The system supports user registration, content browsing, and admin management. It is suitable for learning full-stack development o ...
Posted on Mon, 31 Aug 2026 16:31:39 +0000 by RickChase
Family Financial Management System Built with SpringBoot, Vue.js and UniApp
Technical Stacks
Backend Framework SpringBoot
Spring Boot is a development framework based on Spring Framework, with multiple built-in servers like Tomcat, Jetty and Undertow that require no additional installation or configuration. Its core auto-configuration feature automatically sets up applications based on project dependencies, greatly sim ...
Posted on Wed, 26 Aug 2026 16:47:39 +0000 by jenniferG
Configuring Multiple Data Sources with MyBatis and Druid in Spring Boot
Database Setup
This example demonstrates a read-write database separation setup. The write database (mybatis1) handles write operations, while the read database (mybatis) handles read operations. Both databases share identical table structures.
Write Database Schema
CREATE DATABASE `mybatis1` DEFAULT CHARACTER SET utf8;
CREATE TABLE `user` (
...
Posted on Tue, 25 Aug 2026 16:15:35 +0000 by roswell
Designing a Smart Rural Tourism Platform with SpringBoot and Vue
Technical Architecture
Backend Framework: SpringBoot
SpringBoot simplifies server setup with embedded Tomcat, Jetty, and Undertow servers. Its auto-configuration feature reduces manual setup by analyzing project dependencies. The framework offers out-of-the-box modules like Spring Data and Spring Security for rapid appplication development.
Fro ...
Posted on Thu, 20 Aug 2026 16:28:34 +0000 by d_priyag
Spring Boot Request Handling, Unified Responses, and Layered Decoupling
Web Request and Response Mechanisms
In a Browser/Server (B/S) architecture, clients interact with backend applications via HTTP protocols. When a request reaches the embedded Tomcat server in a Spring Boot application, it is initially processed by the core DispatcherServlet. This front controller routes the incoming request to the appropriate h ...
Posted on Tue, 18 Aug 2026 16:16:04 +0000 by darklight