编程语言
首页 > 编程语言> > java – Spring Eureka App不显示仪表板

java – Spring Eureka App不显示仪表板

作者:互联网

有一个Eureka Server应用程序:

@EnableEurekaServer
@SpringBootApplication
public class RegistrationModulesServiceApplication {

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

使用applicaton.yml config(默认值):

eureka:
  instance:
    hostname: localhost
  client: 
    registerWithEureka: false
    fetchRegistry: false

server:
  port: 1111  

在第一次运行时 – 我看到了带有状态的仪表板.
像文档中一样:
enter image description here

然后 – 重启后我只能看到xml响应:
enter image description here

为什么?

日志中没有错误.

解决方法:

对我来说,问题是我有一个空文件夹,src / main / resources / templates.当此文件夹存在时,FreeMarkerView无法看到spring-cloud-netflix-eureka-server中包含的嵌入式模板.我不记得这个文件夹的来源,但我怀疑它是在线样本.

标签:java,spring,microservices,netflix-eureka
来源: https://codeday.me/bug/20190623/1266786.html