在windows系统下的ruoyi-vue新建模块操作
程序员文章站
2024-03-19 20:43:40
...
在windows系统下的ruoyi-vue新建模块操作
安装ruoyi-vue
NGINX配置
nginx.conf文档配置,注意配置中的中文注释地方
#user nobody;
worker_processes 1;
#error_log logs/error.log;
#error_log logs/error.log notice;
#error_log logs/error.log info;
#pid logs/nginx.pid;
events {
worker_connections 10;
}
http {
include mime.types;
default_type application/octet-stream;
#log_format main '$remote_addr - $remote_user [$time_local] "$request" '
# '$status $body_bytes_sent "$http_referer" '
# '"$http_user_agent" "$http_x_forwarded_for"';
#access_log logs/access.log main;
sendfile on;
#tcp_nopush on;
#keepalive_timeout 0;
keepalive_timeout 65;
#gzip on;
server {
listen 8088; # 监听的web端口
server_name localhost;
#charset koi8-r;
#access_log logs/host.access.log main;
# 注意修改这里的路径
location / {
root \html\dist; # 相对路径,在Nginx包下的对应路径(把前段发布的包所放之处)
try_files $uri $uri/ /index.html;
index index.html index.html;
}
location /prod-api/{
proxy_set_header Host $http_host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header REMOTE-HOST $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_pass http://localhost:8080/;
}
#error_page 404 /404.html;
# redirect server error pages to the static page /50x.html
#
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}
# proxy the PHP scripts to Apache listening on 127.0.0.1:80
#
#location ~ \.php$ {
# proxy_pass http://127.0.0.1;
#}
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
#
#location ~ \.php$ {
# root html;
# fastcgi_pass 127.0.0.1:9000;
# fastcgi_index index.php;
# fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name;
# include fastcgi_params;
#}
# deny access to .htaccess files, if Apache's document root
# concurs with nginx's one
#
#location ~ /\.ht {
# deny all;
#}
}
# another virtual host using mix of IP-, name-, and port-based configuration
#
#server {
# listen 8000;
# listen somename:8080;
# server_name somename alias another.alias;
# location / {
# root html;
# index index.html index.htm;
# }
#}
# HTTPS server
#
#server {
# listen 443 ssl;
# server_name localhost;
# ssl_certificate cert.pem;
# ssl_certificate_key cert.key;
# ssl_session_cache shared:SSL:1m;
# ssl_session_timeout 5m;
# ssl_ciphers HIGH:!aNULL:!MD5;
# ssl_prefer_server_ciphers on;
# location / {
# root html;
# index index.html index.htm;
# }
#}
}
发布前端包
在项目的ruoyi-ui路径下运行:
>npm run build:prod
在ruoyi-ui就会生成一个dist的文件夹
把dist文件包更新到Nginx的配置对应路径
重启Nginx服务
D:\soft\nginx-1.18.0是Nginx的文件根路径。
D:\soft\nginx-1.18.0> nginx.exe -s reload
自动生成代码应用
建立数据库表
通过“系统工具”下的代码生成
此处的customer为我新建的模块
把自动生成代码放到项目的对应位置
后端的代码
生成菜单
菜单默认生成在“系统工具”菜单下。
推荐阅读
-
在windows系统下的ruoyi-vue新建模块操作
-
在window操作系统的桌面右键菜单的[新建]中,添加新建markdown文件.
-
在Windows系统下安装Thrift的方法与使用讲解
-
在Windows系统下安装Thrift的方法与使用讲解
-
在虚拟机下安装Linux操作系统遇到的问题 博客分类: 操作系统 redhat操作系统
-
Resin在Windows系统下的安装
-
小弟我在windows2008并且是64位的操作系统上安装PHP,请教PHP有64位的吗
-
在PHP+Apache+MySQL环境下(windows系统),连接SQLServer数据出现“can not find driver”问题的解决办法
-
句柄是专属于windows操作系统下的概念吗
-
小弟我在windows2008并且是64位的操作系统上安装PHP出现的有关问题