Day 3.1:工程化实战:Java Web 全栈项目管理体系

📅 2025年12月30日 Workflow Automation

项目背景与痛点

面对多 IDE 协作带来的混乱,本体系旨在通过标准化流程实现项目的“快速瘦身”与“完美归档”。

物理层级规范

物理存放建议在 D:\Workspace\Java-Web\


├── 01_Learning/    # 技术验证、实验课练手项目
├── 02_Active/      # 当前核心正在开发区
├── 03_Templates/   # 脚本、README 模板及脚手架
└── 04_Archive/     # 瘦身归档区,存放已完成项目
            

自动化工具实现

一键清理并准备归档.bat
@echo off
title Java Web 项目清理工具
color 0A

echo ======================================================
echo       Java Web 项目一键清理 (准备归档)
echo ======================================================
echo.
echo 该操作将删除当前目录下所有项目的:
echo [target], [node_modules], [.idea], [dist], [build]
echo.
echo 注意:这不会删除你的源码,只删除编译生成的文件。
echo.

:: 检查 Python 是否安装
python --version >nul 2>&1
if %errorlevel% neq 0 (
    echo [错误] 未检测到 Python,请先安装 Python 并添加到环境变量!
    pause
    exit
)

:: 运行 Python 脚本
python clean_project.py

echo.
echo ======================================================
echo 清理任务结束,现在你可以安全地将项目移至 Archive 文件夹。
echo ======================================================
pause
clean_project.py (核心清理代码)
import os
import shutil

# 定义需要清理的文件夹名称
TARGET_FOLDERS = ['target', 'node_modules', '.idea', 'dist', 'build', '.next']

def clean_workspace(root_path):
    print(f"--- 开始扫描路径: {root_path} ---")
    
    deleted_count = 0
    total_size = 0

    for root, dirs, files in os.walk(root_path):
        for dir_name in list(dirs):
            if dir_name in TARGET_FOLDERS:
                full_path = os.path.join(root, dir_name)
                
                # 计算大约节省的空间(可选)
                try:
                    for path, _, files_in_dir in os.walk(full_path):
                        for f in files_in_dir:
                            total_size += os.path.getsize(os.path.join(path, f))
                    
                    print(f"[找到垃圾] 准备删除: {full_path}")
                    shutil.rmtree(full_path)
                    deleted_count += 1
                except Exception as e:
                    print(f"无法删除 {full_path}: {e}")

    print("---------------------------------------")
    print(f"清理完毕!共删除 {deleted_count} 个文件夹。")
    print(f"释放空间: {total_size / (1024*1024):.2f} MB")

if __name__ == "__main__":
    # 默认清理当前脚本所在的目录
    current_dir = os.path.dirname(os.path.abspath(__file__))
    confirm = input(f"确定要清理目录 {current_dir} 下的所有项目缓存吗?(y/n): ")
    if confirm.lower() == 'y':
        clean_workspace(current_dir)
    else:
        print("已取消操作。")
💡 归档秘籍

在将项目移入 04_Archive 前,务必执行清理脚本。将 clean_project.py一键清理.bat 放入想要清理的文件夹下,执行 一键清理.bat。执行完即可把项目文件夹放入 04_Archive

归档复活流程

从归档复活仅需简单命令:

# 后端恢复
mvn clean install  

# 前端恢复
npm install
npm run dev
← 返回主页索引