spring-boot+vue部署问题

java启动springboot

java –jar whadmin.jar

java –jar whadmin.jar --Dspring.config.location=application.yml

 一、编译build

这个不一定是正确的,要按照真实情况而定
xxx npm run build xxx

 报错npm ERR! missing script: build,后来发现package.jsonscripts参数为


  "scripts": {
    "dev": "vue-cli-service serve",
    "build:prod": "vue-cli-service build",
    "build:stage": "vue-cli-service build --mode staging",
    "preview": "node build/index.js --preview",
    "lint": "eslint --ext .js,.vue src",
    "test:unit": "jest --clearCache && vue-cli-service test:unit",
    "test:ci": "npm run lint && npm run test:unit",
    "svgo": "svgo -f src/icons/svg --config=src/icons/svgo.yml",
    "new": "plop"
  },
所以正确的命令应该为
npm run build:prod

二、编译好了后会出现dist文件夹

å¨è¿éæå¥å¾çæè¿°

直接双击index.html就能访问页面(测试后需要放到nginx才能访问)

三、使用nginx进行启动

 这里要注意 root中vue的目录路径必须是斜杆反斜杠会出现很多问题


#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       61;
        server_name  localhost;
        # 注意:路径必须是斜杆,反斜杠会出现很多问题
		root        D:/Desktop/dist;#vue项目的打包后的dist

        #charset koi8-r;

        #access_log  logs/host.access.log  main;

        location / {
            try_files $uri $uri/ @router;#需要指向下面的@router否则会出现vue的路由在nginx中刷新出现404
            index  index.html index.htm;
        }
		
		#对应上面的@router,主要原因是路由的路径资源并不是一个真实的路径,所以无法找到具体的文件
        #因此需要rewrite到index.html中,然后交给路由在处理请求资源
		location @router {
            rewrite ^.*$ /index.html last;
        }
		
		#后端
		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:6161/;
		}
        #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;
    #    }
    #}

}

http://doc.ruoyi.vip/ruoyi-vue/document/hjbs.html#nginx配置

四、转发的时候springboot最好取一个项目名 

springboot:

spring-boot+vue部署问题_第1张图片

nginx: 

其它报错

 vue刷新页面404

1、 Failed to load resource: net::ERR_FILE_NOT_FOUND

    解决方法一:index.html文件中的/去掉

spring-boot+vue部署问题_第2张图片

解决方法二(推荐): vue.config.js 文件中    /错误,前面加个点./

spring-boot+vue部署问题_第3张图片

2、部署出现 Uncaught SyntaxError: Unexpected token '<'

解决方法一:修改 vue.config.js 文件中的 publicPath 参数为: ./ 

spring-boot+vue部署问题_第4张图片

路由.js中

export default new Router({
  mode: 'hash', // hash模式
})

解决方法二:在每个 static/ 前面添加 / 

spring-boot+vue部署问题_第5张图片

你可能感兴趣的:(vue,springboot,nginx)