I got a “Whitelabel Error Page” when using Eureka server
问题 I created a spring cloud project using SPRING INITIALIZR. My project structure is as below: enter image description here The DemoApplication: package com.example.demo; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.cloud.netflix.eureka.server.EnableEurekaServer; @SpringBootApplication @EnableEurekaServer public class DemoApplication { public static void main(String[] args) { SpringApplication