How to deal with the 404 error reported by Tomcat when the Vue project is packaged and deployed with webpack

php中世界最好的语言
Release: 2018-05-21 13:54:37
Original
4268 people have browsed it

This time I will bring you how to deal with the 404 error reported by Tomcat when the Vue project webpack is packaged and deployed. How to deal with the 404 error reported by Tomcat when the Vue project webpack is packaged and deployed.What are the precautions? This is a practical case, let’s take a look at it.

Problems encountered

After using webpack to package vue, publish the packaged file to Tomcat. The access is successful, but it is refreshed. The subsequent page reported a 404 error.

After searching on the Internet, it turns out that it is a problem caused by the HTML5 History mode. The Vue official has given an explanation for the specific reason. You can see

https://router.vuejs.org /zh-cn/essentials/history-mode.html

But after reading it, the problem came again. The official solution did not say how to solve it under tomcat.

Solution

According to the official solution principle

You need to add a server on the server to cover all situations Candidate resources: If the URL does not match any

staticresources, it should return the same index.html page, which is the page your app depends on.

So you can do this under tomcat server. Create a new WEB-INF folder in the root directory of the packaged project, and write a web.xml in WEB-INF.

Write in web.xml:

  Router for Tomcat  404 /index.html  
Copy after login
The purpose is to return to the index.html page once 404 occurs.

Finally, you need to configure your route, configure a routing situation that covers all, and then give a 404 page.

const router = new VueRouter({ mode: 'history', routes: [ { path: '*', component: (resolve) => require(['./views/error404.vue'], resolve) } ] })
Copy after login
I believe you have mastered the method after reading the case in this article. For more exciting information, please pay attention to other related articles on the php Chinese website!

Recommended reading:

Detailed explanation of the steps for php to generate a random string of custom length

php generates random numbers, letters or Mixed string of numbers and letters

The above is the detailed content of How to deal with the 404 error reported by Tomcat when the Vue project is packaged and deployed with webpack. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!