# plain-blog **Repository Path**: eond3ng/plain-blog ## Basic Information - **Project Name**: plain-blog - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2024-08-29 - **Last Updated**: 2025-04-23 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ## plain-blog ![Java](https://img.shields.io/badge/Java-21%2B-orange) ![Spring Boot](https://img.shields.io/badge/Spring%20Boot-3.2-blue) ![Vue](https://img.shields.io/badge/Vue-3.4-brightgreen) **_简单高效的个人博客系统,该仓库为后台地址。_** ### 📦 运行与部署 ```shell # 清除和下载依赖 mvnw clean install # 启动 mvnw spring-boot:run -pl plainblg-portal ``` 启动失败请检查端口占用 ```shell # 查找占用端口的进程 netstat -ano | findstr "port" # 杀死进程 taskkill /pid "pid" -f ``` ### ✅ 测试 ```shell # 运行单元测试 mvnw test -pl plainblg-service ``` ### 📅 路线图 - [x] 通过Spring Boot Observability模式实现访问日志记录 - [x] 结合定时任务优化控制台数据分析 - [ ] 评论功能 - [ ] 二级缓存策略(热点数据预加载) - [ ] ApiFox自动化测试 - [ ] JMeter进行压力测试 ### 其他 1. Maven多模块管理,modules里面的子模块的顺序决定了编译顺序。 2. Maven使用`${revision}`实现多模块版本统一管理需要`flatten-maven-plugin`插件。