# VideosOnline **Repository Path**: developeros/videos-online ## Basic Information - **Project Name**: VideosOnline - **Description**: 🔥单机版版本的实现Springboot,Vue3 - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 2 - **Forks**: 1 - **Created**: 2024-05-23 - **Last Updated**: 2024-09-20 ## Categories & Tags **Categories**: Uncategorized **Tags**: SpringBoot, MyBatis, MySQL, FlyWay, JWT ## README # 项目特点 1. 单体项目,前后端分离 2. Java后端springboot3,maven多模块,DDD开发模式,docker开发环境 3. 前端后台管理: Vite+Vue3+TypeScript+Sass 4. 前端用户界面:Vite+React18+TypeScript+Sass | 项目 | | | ------------------------------------------------------------ | --------------- | | [api](https://gitee.com/developeros/videos-online/tree/master/api) | Java后端 | | [vue-admin](https://gitee.com/developeros/videos-online/tree/master/vue-admin) | 管理后台Vue3 | | [react-protal](https://gitee.com/developeros/videos-online/tree/master/react-protal) | 用户界面React18 | # Windows开发常用命令 无论是docker启动还是vite启动都会遇到一个端口占用的问题。但是使用netstat去查找端口的时候是找不到端口占用的信息的,需要使用管理员运行cmd,执行一下命令 ```shell net stop winnat net start winnat ``` ```sh netstat -ano | findstr "8080" taskkill /f /pid id的数字 ```