当我创建服务发现服务器时,它自动设置为HTTP

@EnableEurekaServer
@SpringBootApplication
public class DiscoveryServerApplication {

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


application.properties

spring.application.name=discovery-server
eureka.client.register-with-eureka=false
eureka.client.fetch-registry=false
server.port=8761

http://localhost:8761/eureka

是否可以设置为TCP / IP或UDP等?

非常感谢你!