美文网首页
Vue+SpringBoot使用History模式

Vue+SpringBoot使用History模式

作者: 粑粑雷 | 来源:发表于2019-12-23 10:40 被阅读0次

    Vue

    
    const router = new VueRouter({
    
      mode: 'history',
    
      base: '/',
    
      routes
    
    })
    
    

    SpringBoot

    import org.springframework.boot.web.server.ErrorPage;
    import org.springframework.boot.web.server.ErrorPageRegistrar;
    import org.springframework.boot.web.server.ErrorPageRegistry;
    import org.springframework.http.HttpStatus;
    import org.springframework.stereotype.Component;
    
    @Component
    public class ErrorPageConfig implements ErrorPageRegistrar {
    
    
        @Override
        public void registerErrorPages(ErrorPageRegistry registry) {
            ErrorPage error404Page=new ErrorPage(HttpStatus.NOT_FOUND,"/index.html" );
            registry.addErrorPages(error404Page);
        }
    
    }
    

    相关文章

      网友评论

          本文标题:Vue+SpringBoot使用History模式

          本文链接:https://www.haomeiwen.com/subject/gjhznctx.html