为什么我添加contextPath之后就不能访问static文件下面的index.html呢?
背景介绍:
springboot整合vue项目,采用前后端分离开发,整合部署。
步骤如下:
(1)后台使用springboot开发
(2)使用vue init webpack vue_name创建vue项目,创建之后
使用cnpm run build打包vue项目,得到dist文件夹,dist文件下面的static与index.html
就是通过build得到的
(3)把第(2)步得到的dist文件夹下面的static文件夹与index.html一起复制到
springboot项目的static文件夹下面(结果为static文件夹下面有子static与index.html)。
启动的两种情况:
(1)在application.yml配置文件中没有添加context-path属性。
启动springboot项目
访问路径:http://localhost:9095就是可以访问index.html文件,后续登陆,跳转、加载数据库数据等等都没有问题。
总之一切正常。也就是说可以直接访问index.html,没有必要为index配置controller
(2)在application.yml配置文件中添加context-path属性,假设值为 /demo
访问路径:http://localhost:9095/demo 为什么就不能直接访问index.html文件呢。
请问各位大佬这是什么原因?大家有什么解决办法吗?望各位大佬不吝赐教。
小弟我跪谢