Vue項目webpack打包部署時Tomcat刷新報404錯誤問題如何處理,Vue項目webpack打包部署時Tomcat刷新報404錯誤問題處理的注意事項有哪些,下面就是實戰案例,一塊兒來看一下html
使用webpack打包vue後,將打包好的文件,發佈到Tomcat上,訪問成功,可是刷新後頁面報404錯。vue
在網上查找了一下,原來是HTML5 History 模式引起的問題,具體爲何,vue官方已經給出瞭解釋,你能夠看https://router.vuejs.org/zh-cn/essentials/history-mode.htmljava
可是看完問題又來了,官方給出的解決方案中沒有說tomcat下,怎麼決解。webpack
根據官方給出的解決方案原理web
你要在服務端增長一個覆蓋全部狀況的候選資源:若是 URL 匹配不到任何靜態資源,則應該返回同一個 index.html 頁面,這個頁面就是你 app 依賴的頁面。tomcat
因此在tomcat服務器下你能夠這麼作。在打包好的項目根目錄下新建一個WEB-INF文件夾,在WEB-INF中寫一個web.xml。 web.xml中寫:服務器
<web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemalocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd" version="3.1" metadata-complete="true"> <display-name>Router for Tomcat</display-name> <error-page> <error-code>404</error-code> <location>/index.html</location> </error-page> </web-app>
這樣的目的就是一旦出現404就返回到 index.html 頁面。app
最後還須要配置一下你的route,配置一個覆蓋全部的路由狀況,而後在給出一個 404 頁面。ui
const router = new VueRouter({ mode: 'history', routes: [ { path: '*', component: (resolve) => require(['./views/error404.vue'], resolve) } ] })