这几天整理了小程序里心愿圈里朋友们发的几个源码需求:人员管理系统、人事管理系统(模块齐全)、工资管理系统。
网上是找到类似的系统源码并且测试了,但很遗憾,这类系统要么都是伪开源,要么功能缺失得太严重跑不起来。
在寻找无果的情况下,刷到了JeecgBoot这套系统,觉得挺符合这些朋友的项目需求,所以今天给大家分享这套系统的搭建部署流程。
只需要把系统部署起来,然后在这基础上根据自己的项目需求在后台进行可视化配置与开发,不需要我们编写一行代码即可完成大部分功能。
可以参考前几期我录制的Finers进销存系统,那套系统就是利用JeecgBoot直接在后台把功能配置出来的,没有编写过一行额外的代码。
# 对应本地开发环境
/jeecadmin/jeecg-module-system/jeecg-system-start/src/mAIn/resources/Application-dev.yml
# 对应线上环境
/jeecadmin/jeecg-module-system/jeecg-system-start/src/main/resources/application-prod.yml
upstream jeecgapi.com {
server 127.0.0.1:8080;
}
server{
...其他代码...
................
location / {
root html;
index index.html index.htm;
proxy_pass http://jeecgapi.com;
#ip remote_addr
proxy_set_header X-Forwarded-Scheme $scheme;
proxy_redirect off;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
...其他代码...
................
}
# 安装yarn
npm install -g yarn
# 下载依赖
yarn install
# 启动(本地开发需要用到)
yarn run serve
# 编译打包项目
yarn run build
upstream jeecgadmin.com {
server 127.0.0.1:80;
}
server
{
...其他代码...
................
location / {
# 用于配合 browserHistory使用
try_files $uri $uri/ /index.html;
}
location /jeecg-boot {
proxy_pass http://127.0.0.1:8080/jeecg-boot;
proxy_redirect off;
#真实IP
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
set $my_proxy_add_x_forwarded_for $proxy_add_x_forwarded_for;
if ($proxy_add_x_forwarded_for ~* "127.0.0.1"){
set $my_proxy_add_x_forwarded_for $remote_addr;
}
proxy_set_header X-Forwarded-For $my_proxy_add_x_forwarded_for;
}
...其他代码...
................
}
获取方式
//ceping.club/928.html