Efficient Java Integration of Feishu API for Message Push and Escalation

Bot Types Custom Group Bot A custom group bot operates exclusively within the chat it was added to. Created via Group Settings > Group Bots, it requires no tenant admin approval. Interaction occurs through a webhook URL. Limitations include: Usable only in the group where added; cannot engage in one-on-one chats. Supports only unidirectiona ...

Posted on Fri, 07 Aug 2026 16:19:16 +0000 by archangel_617b

Hello-javasec Java Security Code Audit

Hello-javasec Code Audit Environment: https://github.com/j3ers3/Hello-Java-Sec Configure the database and start the project directly. This project is built with Spring Boot. Swagger and Actuator Unauthenticated Access When examining dependencies, both Swagger and Actuator were present, so I reviewed their configurations. Swagger had no securit ...

Posted on Thu, 06 Aug 2026 16:51:15 +0000 by maltech

Integrating MQTT Messaging with Spring Boot Using the Eclipse Paho Client

Official References Quick Deployment: https://docs.emqx.com/en/emqx/v5.7/getting-started/getting-started.html Development Guide: https://docs.emqx.com/en/emqx/latest/connect-emqx/java.html MQTTX Client Download: https://mqttx.app/downloads Implemantation Details Maven Dependency <dependency> <groupId>org.eclipse.paho</group ...

Posted on Thu, 06 Aug 2026 16:05:54 +0000 by 8ball

Permission Management System Development: Controller Layer, Unified Response Result, and Knife4j Integration

5. Controller Layer import org.springframework.beans.factory.annotation.Autowired; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RestController; import com.example.permission.model.system.SysRole; import com.example.permiss ...

Posted on Mon, 03 Aug 2026 16:20:17 +0000 by Snooble

Cross-Domain Issues in Frontend-Backend Data Interaction

Cross-Domain Issues in Frontend-Backend Data Interaction Understanding Cross-Domain Problems Problem Description In a typical development setup, a Vue.js frontend might run on port 9000 while a Spring Boot backend operates on port 8080. This configuration often triggers cross-domain issues when the frontend attempts to communicate with the back ...

Posted on Sun, 02 Aug 2026 16:59:12 +0000 by kennethl

Spring Boot Storage Integration with MinIO SDK Versions 7 and 8

Maven Dependency Configuration For projects using the legacy MinIO SDK version 7, the following dependency structure is required. Note that when using Spring Boot 2.7 or newer, you must explicitly declare the OkHttp dependency before the MinIO dependency to insure compatibility. <dependency> <groupId>com.squareup.okhttp3</gro ...

Posted on Sun, 02 Aug 2026 16:45:41 +0000 by koopmaster

Traditional Culture Website Implementation with Spring Boot and Vue.js

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

Posted on Sun, 02 Aug 2026 16:34:43 +0000 by cactus

Personnel Attendance Management System with Java Spring Boot, SSM, and Vue.js

Technical Stack Overview Backend Framework: Spring Boot Spring Boot is a framework designed for creating independent, production-grade Spring-based applications. Its primary objective is to simplify the Spring application development process by offering out-of-the-box functionality while maintaining core power and flexibility. Spring Boot provi ...

Posted on Sat, 01 Aug 2026 16:05:19 +0000 by dicky96

Implementing Excel Import and Export with Spring Boot, MyBatis-Plus, and EasyExcel

Start by creating a Spring Boot project and add the necessary dependencies to the pom.xml file. <dependency> <groupId>com.baomidou</groupId> <artifactId>mybatis-plus-boot-starter</artifactId> <version>3.5.2</version> </dependency> <dependency> <groupId>mysql</groupId ...

Posted on Fri, 31 Jul 2026 16:30:07 +0000 by [ArcanE]

Student Information Management System Based on Spring Boot and Vue

This article presents a practical implementation of a student information management system built using Spring Boot, Vue.js, and MySQL. The system provides RESTful APIs for mangaing student records, including CRUD operations, search, and pagination. The frontend is developed with Vue 3 and Element Plus, while the backend uses Spring Boot 2.x wi ...

Posted on Fri, 31 Jul 2026 16:16:44 +0000 by sunnysideup