whitelabel错误页面404 spring boot angular 5

时间:2018-02-12 06:56:33

标签: java angular spring-mvc spring-boot

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

但是当我刷新那个页面时,我发现这个错误。 enter image description here

这是我的代码:

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"
  }
}

的index.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

3 个答案:

答案 0 :(得分:1)

我也面临着同样的问题。 这是对我有用的解决方案。

我在应用程序路由模块中启用了哈希(#)。

如何启用?

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

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

第3步:保存文件。它应该解决此问题。您在网址中只会注意到的另一件事是端口号http://localhost:4800/#/dashboard

之后的hash(#)

还有另一种方法可以执行相同的操作,请选中this

答案 1 :(得分:0)

您需要重定向所有&#34; notFound&#34;请求&#34; index.html&#34;。请查看此主题以解决您的问题 - link

答案 2 :(得分:0)

对不起,可能我来不及回答这个问题。在我当前使用(Angular 7 + Spring boot)进行的Web应用程序开发中,刷新页面时以及在复制URL并粘贴的另一种情况下,我也遇到了相同的问题(白色标签错误)。浏览器的新标签。

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

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

My Controller class -(PIC 1)

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

My angular.json file-(PIC 2)

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