# learning-notes **Repository Path**: GeTieJun/learning-notes ## Basic Information - **Project Name**: learning-notes - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2026-07-15 - **Last Updated**: 2026-07-24 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # 📚 学习笔记 > 个人技术学习笔记库,涵盖 Java、Spring、中间件、架构设计、运维等领域的知识积累。 ## 📖 目录导航 | 领域 | 说明 | |------|------| | [Java](java/) | JVM、并发编程、集合框架 | | [Spring](spring/) | IoC、AOP、SpringBoot、SpringCloud | | [中间件](middleware/) | Redis、MySQL、Kafka | | [架构设计](architecture/) | 分布式系统、微服务、容错 | | [运维](devops/) | Docker、Linux | | [面试](interview/) | 面试题、评价体系 | ## 🔖 标签体系 - `基础` - 语言/框架基础知识 - `源码` - 源码分析类 - `实战` - 生产实践类 - `面试` - 面试相关 - `TODO` - 待完善 ## 📅 更新日志 | 日期 | 内容 | |------|------| | 2026-07-15 | 初始化仓库,接入 Docsify | ## 🚀 本地预览 ```bash # 方式一:Python 内置服务器 python3 -m http.server 3000 # 方式二:Docker(推荐) docker run -d -p 8080:80 -v $(pwd):/docs nginx:alpine # 然后浏览器打开 http://localhost:3000 或 http://localhost:8080 ``` ## 📝 贡献指南 1. 新建 Markdown 文件到对应目录 2. 更新 `_sidebar.md` 添加导航链接 3. 提交并推送 ```bash git add . git commit -m "docs: 新增xxx笔记" git push ```