我正在尝试运行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
答案 0 :(得分:0)
确保您的应用程序中包含此文件。yml:
spring:
freemarker:
template-loader-path: classpath:/templates/
prefer-file-system-access: false