前端:vue ,使用Element ui 控件
后端:使用spring boot mybatis。打包jar 上传服务器
数据库:mysql,navicate作用数据库表操作工具
先来个效果图吧;











#user nobody;
worker_processes 3;
#error_log logs/error.log;
#error_log logs/error.log notice;
#error_log logs/error.log info;
#pid logs/nginx.pid;
events {
worker_connections 1024;
}
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 80;
server_name ll;
charset utf-8;
location / { # /表示根目录,该配置表示Nginx默认打开/www下的index.html
# root /www/wwwroot/tm.bt.cn;
root /www/wwwroot/zjq.com;
# root /www/wwwroot;
# root /www/wwwroot/192.144.212.56;
# root /www/server/tomcat9/demo/src/main/resources/templates;
index index.html index.htm;
}
location = /project {
root /www/wwwroot/192.144.212.56;
index index.html index.htm;
}
}
}


mysql -umiaosha -p123456
注意没有空格

注意:数据库命.表明

就是数据库名称 ip配置的问题

就是数据库名称 ip配置的问题


