RuoYi v4.8.0 基于SpringBoot开发的轻量级Java快速开发框架
一、下载TortoiseGit软件包及语言包
下载链接:Download – TortoiseGit – Windows Shell Interface to Git
二、Git下载代码
三、导入项目
地址:环境部署 | RuoYi
1.根据项目说明文档导入代码和数据库,配置数据库信息
2.启动
# 网址
http://localhost:80
# 账号密码
admin
admin123
四、遇到的问题
1.无法运行RuoYiApplication
配置JDK,重载maven文件
参考链接:java:程序包org.springframework.boot不存在的完美解决方法
2.80端口被占用,winspace.exe占用80端口
Description: Web server failed to start. Port 80 was already in use.
Action: Identify and stop the process that's listening on port 80 or configure this application to listen on another port.
打开命令框查找端口占用情况,并停掉80端口占用的服务
# 查询指定端口
netstat -ano | findstr 80
# 根据进程PID查询进程名称
tasklist | findstr "进程id"
# 根据PID杀死任务
taskkill /F /PID "进程PID号"
# 根据进程名称杀死任务
taskkill -f -t -im "进程名称"
参考链接:Web server failed to start. Port 80 was already in use.解决Windows端口被占用问题