>我正在尝试在不引用任何外部文件的情况下创建 Spring 应用程序。这应该是一个模块,然后作为依赖项包含在内,配置并用于将服务插入现有生态系统。这就是我的做法:
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()
然后,我继续通过环境变量在 run 命令中提供 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
文件中,它确实有效。我可以在不使用文件资源的情况下以某种方式使其工作吗?
您正在使用负责 SpringApplication 和 ApplicationContext 实例的 SpringApplicationBuilder 传递属性。
从文档中,此处提供的属性将是 ApplicationContext 的一部分,而不是 BootstrapContext。ApplicationContext 是 BootstrapContext 的子级。
您可以在此处阅读有关引导上下文的更多信息 -
http://cloud.spring.io/spring-cloud-commons/1.3.x/single/spring-cloud-commons.html#_the_bootstrap_application_context
Bootstrap.yml/properties 用于配置 Bootstrap Context。
您可以查看这些属性以更改文件的名称或位置 -
spring.cloud.bootstrap.name - bootstrap(default)
spring.cloud.bootstrap.location
您将必须使用文件资源(yml 或属性(。