tomcat部署vue项目,一刷新就报404错误解决

Posted mp-ui

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了tomcat部署vue项目,一刷新就报404错误解决相关的知识,希望对你有一定的参考价值。

首先在前端vue项目中,src/router/index.js中将模式改成history

const router = new VueRouter(
  mode: 'history',
  base: process.env.BASE_URL,
  routes
)

如果项目打包好之后是直接放在tomcat,那么需要在打包好的项目根路径下面创建WEB-INF文件夹,并在文件夹里面新建一个web.xml,写入以下内容:

<?xml version="1.0" encoding="UTF-8"?>
<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>

如果是直接放在springboot项目的recources/static上面,则需要加一个配置类

/**
 * 404错误页面重定向
 * @author Prince
 */
@Configuration
public class ErrorConfiguration implements ErrorPageRegistrar 

    @Override
    public void registerErrorPages(ErrorPageRegistry registry) 
        ErrorPage[] errorPages = new ErrorPage[1];
        errorPages[0] = new ErrorPage(HttpStatus.NOT_FOUND, "/index.html");
        registry.addErrorPages(errorPages);
    


如果是用其他方式部署的可以看一下官方的文档:https://router.vuejs.org/zh/guide/essentials/history-mode.html

以上是关于tomcat部署vue项目,一刷新就报404错误解决的主要内容,如果未能解决你的问题,请参考以下文章

tomcat部署vue项目,一刷新就报404错误解决

tomcat部署vue项目,一刷新就报404错误解决

Vue项目部署tomcat,刷新报错404解决办法

解决vue项目route使用history模式,tomcat部署刷新url 404问题

若依vue项目部署步骤,避免刷新时出现404错误

若依vue项目部署步骤,避免刷新时出现404错误