SpringBoot+VUE打包发布到windows服务器
SptringBoot
winsw的使用比较简单。从github上下载:winsw下载,要下载的文件有两个:1.winsw.exe程序;2.xml配置文件。我下载的是最新版本的WinSW.NET4.exe和sample-minimal.xml。下载完成后,将下载的两个文件及springboot项目的jar包放在同一个文件夹中。
需要将winsw执行程序跟xml改成同样的名字,推荐使用项目名+Service的命名方式,比如:WinSW.NET4.exe改成gameApiService.exe,sample-minmal.xml改成gameApiService.xml。
改名完成后,编辑gameApiService.xml文件,配置如下图:
<configuration>
<!-- ID of the service. It should be unique accross the Windows system-->
<id>gameApiService</id>
<!-- Display name of the service -->
<name>gameApiService</name>
<!-- Service description -->
<description>This service is a service cratead from a minimal configuration</description>
<!-- Path to the executable, which should be started -->
<executable>C:\Program Files\Java\jdk1.8.0_31\bin\java.exe</executable>
<arguments>-jar game_api-1.0.0-SNAPSHOT.jar</arguments>
</configuration>
配置完成后,命令行进入winsw所在的文件夹,执行“gameApiService.exe install”,其中gameApiService是你修改后的名称。
注意:命令提示符界面要用管理员权限进入,否则安装服务会失败,提示“WMI Operation failure: AccessDenied”
进入服务界面,可以看到gameApiService服务已经生成了:
命令提示符界面输入命令“net start myProject”启动服务。
删除服务
删除服务分为两步:1停止服务;2删除服务,都是在命令行界面实现。
输入“net stop gameApiService”停止运行服务。
输入“gameApiService.exe uninstall”删除服务。
最后
上面所有的命令都可以写在批处理文件中,部署的时候就可以实现一键部署了。
VUE
1.安装nginx,将编译好的dist放到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 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 7001;
server_name localhost;
#charset koi8-r;
#access_log logs/host.access.log main;
root dist;#在nginx下不需要绝对路径
location / {
#root dist;
#index index.html;
try_files $uri $uri/ @router;#需要指向下面的@router否则会出现vue的路由在nginx中刷新出现404
index index.html index.htm;
}
location @router {
rewrite ^.*$ /index.html last;
}
#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;
# }
#}
}
3.然后启动nginx启动就好了