我正在尝试在不引用任何外部文件的情况下创建 Spring Application。这应该是一个模块,您可以将其作为依赖项包含在内,配置并用于将服务插入现有生态系统。这就是我这样做的方式:
Map<String, Object> properties = new HashMap<>();
properties.put("server.address", "0.0.0.0")
properties.put("server.port", 8080)
properties.put("spring.profiles.active", "cloud")
properties.put("spring.application.name", "someApp")
properties.put("spring.cloud.config.failFast", true)
properties.put("spring.cloud.config.discovery.enabled", true)
properties.put("spring.cloud.config.discovery.serviceId", "config")
properties.put("eureka.instance.preferIpAddress", true)
properties.put("eureka.instance.statusPageUrlPath", "/health")
new SpringApplicationBuilder()
.bannerMode(Banner.Mode.OFF)
.properties(properties)
.sources(SpringConfiguration.class)
.web(false)
.registerShutdownHook(true)
.build()
然后我继续通过环境变量在运行命令中提供 Eureka 默认区域:
--env eureka_client_serviceUrl_defaultZone='http://some-host:8765/eureka/' --env SPRING_CLOUD_CONFIG_LABEL='dev' --env SPRING_CLOUD_INETUTILS_PREFERRED_NETWORKS='10.0'
应用程序在 Eureka 中成功注册,但不幸的是,它尝试在此之前获取配置,并且它正在默认 URL ( http://localhost:8888
) 下查找它,而不是从注册表中获取配置服务器 IP。是的,如果我将所有这些属性都放在bootstrap.yml
文件中,它确实有效。我可以在不使用文件资源的情况下以某种方式使其工作吗?