whitelabel 错误页面 404 spring boot angular 5

Posted

技术标签:

【中文标题】whitelabel 错误页面 404 spring boot angular 5【英文标题】:whitelabel error page 404 spring boot angular 5 【发布时间】:2018-07-22 07:11:33 【问题描述】:

我正在开发一个 Web 应用程序,我的后端是 spring boot,前端是 angular 5,它在 4200 端口上运行。我在 Angular 5 登录、家庭应用程序、搜索中有四个组件。当我开始 Spring Boot 项目和 Angular 项目时,我可以通过提供 http://localhost:4200 来导航登录页面。所以它正在导航到http://localhost:4200/login

但是当我刷新该页面时,我收到以下错误。

这是我的代码:

proxy.conf.json

    
    "/": 
        "target": "http://localhost:8081",
        "secure": false
    

package.json:

   "name": "cyber-security-vw",
  "version": "0.0.0",
  "license": "MIT",
  "scripts": 
    "ng": "ng",
    "start": "ng serve --proxy-config proxy.conf.json",
    "build": "ng build --prod",
    "test": "ng test",
    "lint": "ng lint",
    "e2e": "ng e2e"
  ,
  "private": true,
  "dependencies": 
    "@angular/animations": "^5.2.0",
    "@angular/common": "^5.2.0",
    "@angular/compiler": "^5.2.0",
    "@angular/core": "^5.2.0",
    "@angular/forms": "^5.2.0",
    "@angular/http": "^5.2.0",
    "@angular/platform-browser": "^5.2.0",
    "@angular/platform-browser-dynamic": "^5.2.0",
    "@angular/router": "^5.2.0",
    "core-js": "^2.4.1",
    "rxjs": "^5.5.6",
    "zone.js": "^0.8.19"
  ,
  "devDependencies": 
    "@angular/cli": "1.6.5",
    "@angular/compiler-cli": "^5.2.0",
    "@angular/language-service": "^5.2.0",
    "@types/jasmine": "~2.8.3",
    "@types/jasminewd2": "~2.0.2",
    "@types/node": "~6.0.60",
    "codelyzer": "^4.0.1",
    "jasmine-core": "~2.8.0",
    "jasmine-spec-reporter": "~4.2.1",
    "karma": "~2.0.0",
    "karma-chrome-launcher": "~2.2.0",
    "karma-cli": "~1.0.1",
    "karma-coverage-istanbul-reporter": "^1.2.1",
    "karma-jasmine": "~1.1.0",
    "karma-jasmine-html-reporter": "^0.2.2",
    "protractor": "~5.1.2",
    "ts-node": "~4.1.0",
    "tslint": "~5.9.1",
    "typescript": "~2.5.3"
  

索引.html

    <!doctype html>
<html lang="en">
<head>
  <meta charset="utf-8">
  <title>CyberSecurityVw</title>
  <base href="/">

  <meta name="viewport" content="width=device-width, initial-scale=1">
  <link rel="icon" type="image/x-icon" href="favicon.ico">
</head>
<body>
  <app-root></app-root>
</body>
</html>

app.component.html

<div align="center">
  <router-outlet></router-outlet>
</div>

app-routing.module.ts

import  ApplicationComponent  from './application/application.component';
import  NavigationComponent  from './navigation/navigation.component';
import  HomepageComponent  from './homepage/homepage.component';
import  AppComponent  from './app.component';
import  NgModule  from '@angular/core';
import  RouterModule, Routes  from '@angular/router';
import  CommonModule  from '@angular/common';
import  LoginComponent  from './login/login.component';



const routes: Routes = [
   path: '', redirectTo: '/login', pathMatch: 'full' ,
   path: 'login', component: LoginComponent ,
   path: 'home', component: HomepageComponent ,
   path: 'application', component: ApplicationComponent ,
   path: 'navigation', component: NavigationComponent ,
];

@NgModule(
  imports: [CommonModule, RouterModule.forRoot(routes)],
  exports: [RouterModule],
  declarations: []
)

export class AppRoutingModule  

Spring boot 主类

package com.vl.cybersecurity;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.context.annotation.Configuration;

@Configuration
@EnableAutoConfiguration
@SpringBootApplication
public class CyberSecurityApplication 

    public static void main(String[] args) 
        SpringApplication.run(CyberSecurityApplication.class, args);
    

其他包:

com.vl.cybersecurity.controller     
com.vl.cybersecurity.entity
com.vl.cybersecurity.service
com.vl.cybersecurity.dao

【问题讨论】:

当您收到“whitelabel error page”时,能否提供应用程序的堆栈跟踪信息? 服务器端返回此错误。 你在spring-boot项目中部署dist文件夹了吗?你尝试通过postman登录吗? 是的,我在 src/main/resources/static 文件夹中部署了 dist 文件夹文件。来自邮递员它正在使用 8080 端口@hrdkisback 如果您已修复此错误,请提供解决方案。 【参考方案1】:

您需要将所有“notFound”请求重定向到“index.html”。看这个话题解决你的问题-link

【讨论】:

虽然这在理论上可以回答这个问题,it would be preferable 在此处包含答案的基本部分,并提供链接以供参考。【参考方案2】:

抱歉,我可能来不及回答这个问题了。在我当前使用(Angular 7 + Spring boot)进行的 Web 应用程序开发中,我在刷新页面时也遇到了同样的问题(white label error),并且在另一种情况下(例如复制 URL 并粘贴)浏览器新标签页。

原因: 我们必须理解为什么会发生这种情况,因为当您刷新或复制和粘贴 URL 时,实际上发生了什么浏览器不知道在哪里导航请求的路由/路径,因为我们都知道我们的 Angular 应用程序已部署并且它正在运行像tomcat等服务器... 所以服务器不知道从浏览器到哪里导航特定的路由请求。所以我们必须以某种方式对服务器说。

解决方案: 因此,在阅读了很多内容后,我得到了一个对我来说很好的解决方案,我在 controller 类中添加了以下代码。(*PIC 1) 这实际上将来自浏览器的路由请求重定向到 index.html 从这里开始 Angular 本身将处理路由。因此不会再出现白标错误。

My Controller class -(PIC 1)

在构建 Angular 应用程序时,您还必须正确定义 index.html 的重定向路径,我们可能已经给出了输出目录文件夹路径 所有的 TS 文件都被转换成简单的 JS 文件。默认情况下,spring boot 将查看静态文件夹。在我的情况下,我做了同样的事情,你可以参考我在 angular.json(*PIC 2) 文件在我的 Angular 应用程序中。在构建 Angular 应用程序时,将在资源文件夹下自动创建静态文件夹。在静态文件夹内,将自动生成 index.html 文件。

My angular.json file-(PIC 2)

希望它对您/某人有所帮助。 谢谢大家。

【讨论】:

我根据理解的人稍微解释了一下。 你能简单解释一下吗,我没听懂@Karthik Karnan @Thakkar Darshan 实际上我想说的是您需要将所有请求(直接从浏览器而不是通过单击任何路由链接)转发到 index.html 将在输出目录中生成一旦 Angular 应用程序构建成功。我希望你能理解一些东西。如果不明白,请随时询问。【参考方案3】:

我也遇到了同样的问题。 这是对我有用的解决方案。

我在我的应用路由模块中启用了 hash(#)。

如何启用?

第 1 步:打开 app-routing.module.ts 第2步:在RouterModule.forRoot中添加路由时,将可选参数useHash作为真值。

 @NgModule(
  imports: [RouterModule.forRoot(routes,  useHash: true )],
  exports: [RouterModule],
)

第 3 步:保存文件。它应该可以解决这个问题。您会在 url 中注意到的唯一不同之处是您的端口号 http://localhost:4800/#/dashboard 之后的 hash(#)

还有另一种方法可以做同样的事情,请查看this

【讨论】:

以上是关于whitelabel 错误页面 404 spring boot angular 5的主要内容,如果未能解决你的问题,请参考以下文章

为啥我在运行简单的 Spring Boot 应用程序时总是得到状态为“404”的 Whitelabel 错误页面

状态为404的Springboot Whitelabel错误页面:无法解析JSP的路径

Spring Boot访问HTML页面报404错误Whitelabel Error Page

如何在 Spring 中编辑 Whitelabel 错误页面

带有 Angular + Springboot 的 Whitelabel 错误页面

如何在Spring-boot中修复错误“Whitelabel错误页面”