其他分享
首页 > 其他分享> > jeecg-boot 初识 搭建

jeecg-boot 初识 搭建

作者:互联网

项目搭建

在git上克隆代码下来

Gitee项目地址
https://gitee.com/jeecg/jeecg-boot
git:
https://gitee.com/jeecg/jeecg-boot.git
GitHub项目地址
https://github.com/jeecgboot/jeecg-boot
git:
https://github.com/jeecgboot/jeecg-boot.git

环境准备

前端环境

1.node.js

#验证npm 出现版本号即可
npm -v
#验证 node 出现版本号即可
node -v

2.安装yarn

#全局安装 yarn
npm i -g yarn
#验证 出现对应版本号即可
yarn -v

3.配置国内镜像

npm config set registry https://registry.npm.taobao.org --global
npm config set disturl https://npm.taobao.org/dist --global

yarn config set registry https://registry.npm.taobao.org --global
yarn config set disturl https://npm.taobao.org/dist --global

4.在项目文件夹内打开cmd
执行 npm install

后端环境

#本地环境JDK 8、Maven、Redis、MySQL
项目如果没有被IDEA识别为maven项目,将项目中的pom文件左键 add maven

数据库配置

在项目文件中有一个db文件夹
运行对应的sql文件
在jeecg-boot-module-system中找到application-dev.yml文件
在文件中配置德鲁伊的数据库连接地址以及数据库用户名密码

项目启动

启动redis
构建启动前端项目
server run
构建启动后端项目
主启动类应该是JeecgSystemApplication
注意非Cloud

标签:npm,git,boot,yarn,初识,https,jeecg
来源: https://www.cnblogs.com/louitoh/p/16336991.html