Eureka Server在Spring Boot中出现Whitelabel Error Page错误

时间:2019-04-15 17:39:22

标签: spring spring-boot netflix-eureka

我正在尝试运行Eureka Server以获取Eureka系统状态页面。

我在运行项目时收到Whitelabel Error Page错误。

这是我的applications.yml文件

# This default profile is used when running a single instance completely standalone:
spring:
profiles: default
server:
  port: 9000  
eureka:
  instance:
    hostname: my-eureka-server.com
  client:
    registerWithEureka: false
    fetchRegistry: false
    serviceUrl:
      defaultZone: http://${eureka.instance.hostname}:${server.port}/eureka/    

我希望能够查看我的Eureka状态页面,而不是错误。

注意:教程的来源是这个Eureka Server

1 个答案:

答案 0 :(得分:0)

确保您的应用程序中包含此文件。yml:

spring:
  freemarker:
    template-loader-path: classpath:/templates/
    prefer-file-system-access: false

请参阅此处:https://cloud.spring.io/spring-cloud-static/spring-cloud-netflix/2.1.0.RELEASE/multi/multi_spring-cloud-eureka-server.html#netflix-eureka-server-starter