# springboot-demo **Repository Path**: cytang0617/springboot-demo ## Basic Information - **Project Name**: springboot-demo - **Description**: No description available - **Primary Language**: Java - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-06-05 - **Last Updated**: 2025-06-13 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # springboot-demo #### 介绍 demo ### jdk 环境 - 安装 jdk17 ```shell apt install openjdk-17-jdk ``` - 如果环境中安装多个版本 jdk,执行以下命令切换 java 版本 ```shell update-alternatives --config java ``` ### nodejs 环境 - 安装 nodejs 22 ```shell nvm install 22 ``` - 切换 nodejs 版本 ```shell nvm use 22 ``` ### 创建数据库 ```sql CREATE DATABASE IF NOT EXISTS `projectplan` DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci; ```