Клиент конфигурации Spring Cloud не выбирает значения с сервера конфигурации - PullRequest
0 голосов
/ 10 апреля 2020

Мой клиент Config не выбирает значения свойств с сервера конфигурации.

http://localhost:8888/customer_service/default 

Выше конечная точка сервера Config возвращает правильные значения для клиента Config,

{
    "name": "customer_service",
    "profiles": [
        "default"
    ],
    "label": null,
    "version": "c7648db5662dc65aeaad9c91abbf58b41010be7c",
    "state": null,
    "propertySources": [
        {
            "name": "https://github.com/prasadrpm/MicroService_config.git/customer_service.properties",
            "source": {
                "customer.config.location": "XXXX",
                "customer.config.name": "YYYY"
            }
        }
    ]
}

Config client bootstrap .properties

server.port=8080
spring.application.name=customer_service

spring.cloud.config.enabled=true
spring.cloud.config.name=config_server
spring.cloud.config.uri=http://localhost:8888

Config client Log

2020-04-10 16:47:00.725  INFO 14976 --- [           main] c.c.c.ConfigServicePropertySourceLocator : Fetching config from server at : http://localhost:8888
2020-04-10 16:47:03.267  INFO 14976 --- [           main] c.c.c.ConfigServicePropertySourceLocator : Located environment: name=config_server, profiles=[default], label=null, version=c7648db5662dc65aeaad9c91abbf58b41010be7c, state=null
2020-04-10 16:47:03.269  INFO 14976 --- [           main] b.c.PropertySourceBootstrapConfiguration : Located property source: [BootstrapPropertySource {name='bootstrapProperties-configClient'}]
2020-04-10 16:47:03.280  INFO 14976 --- [           main] com.customer.CustomerServiceApplication  : No active profile set, falling back to default profiles: default
...
2020-04-10 16:47:05.164  INFO 14976 --- [           main] o.s.web.context.ContextLoader            : Root WebApplicationContext: initialization completed in 1860 ms
2020-04-10 16:47:05.549  WARN 14976 --- [           main] ConfigServletWebServerApplicationContext : Exception encountered during context initialization - cancelling refresh attempt: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'customerController': Injection of autowired dependencies failed; nested exception is java.lang.IllegalArgumentException: Could not resolve placeholder 'customer.config.location' in value "${customer.config.location}"
2020-04-10 16:47:05.552  INFO 14976 --- [           main] o.apache.catalina.core.StandardService   : Stopping service [Tomcat]
2020-04-10 16:47:05.577  INFO 14976 --- [           main] ConditionEvaluationReportLoggingListener : 

Error starting ApplicationContext. To display the conditions report re-run your application with 'debug' enabled.
2020-04-10 16:47:05.595 ERROR 14976 --- [           main] o.s.boot.SpringApplication               : Application run failed

org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'customerController': Injection of autowired dependencies failed; nested exception is java.lang.IllegalArgumentException: Could not resolve placeholder 'customer.config.location' in value "${customer.config.location}"
    at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessProperties(AutowiredAnnotationBeanPostProcessor.java:405) ~[spring-beans-5.2.5.RELEASE.jar:5.2.5.RELEASE]
    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1422) ~[spring-beans-5.2.5.RELEASE.jar:5.2.5.RELEASE]
    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:594) ~[spring-beans-5.2.5.RELEASE.jar:5.2.5.RELEASE]
    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:517) ~[spring-beans-5.2.5.RELEASE.jar:5.2.5.RELEASE]
    at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:323) ~[spring-beans-5.2.5.RELEASE.jar:5.2.5.RELEASE]
    at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:222) ~[spring-beans-5.2.5.RELEASE.jar:5.2.5.RELEASE]
    at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:321) ~[spring-beans-5.2.5.RELEASE.jar:5.2.5.RELEASE]

Ответы [ 2 ]

2 голосов
/ 10 апреля 2020

URL-адрес, который возвращает вам правильные свойства / конфигурацию: localhost:8888/customer_service/default

Клиентское приложение запрашивает свойства на основе следующих данных:

c.c.c.ConfigServicePropertySourceLocator : Fetching config from server at : http://localhost:8888
c.c.c.ConfigServicePropertySourceLocator : Located environment: name=config_server, profiles=[default], label=null, version=c7648db5662dc65aeaad9c91abbf58b41010be7c, state=null
b.c.PropertySourceBootstrapConfiguration : Located property source: [BootstrapPropertySource {name='bootstrapProperties-configClient'}]
com.customer.CustomerServiceApplication  : No active profile set, falling back to default profiles: default
...

Таким образом, по сути, клиентское приложение Вызов:

localhost:8888/config_server/default 

Итак, есть два решения:

  • удалить spring.cloud.config.name=config_server свойство в bootstrap .properties, и ваше приложение должно иметь возможность извлекать свойства.
  • обновить значение службы spring.cloud.config.name до customer_service. Но если вы не укажете spring.cloud.config.name явно, то клиент будет использовать spring.application.name в качестве значения по умолчанию для spring.cloud.config.name.
0 голосов
/ 10 апреля 2020

Какую аннотацию вы здесь использовали? Его можно легко получить следующим образом.

@Value("${customer.config.location}")
    private String someOtherProperty;

и не нужно

spring.cloud.config.name = config_server

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...