spring-cloud-config Questions

5

I am pretty interested in spring cloud project and now I am testing it, but blocked immediately. In POM: I added this dependency: <dependency> <groupId>org.springframework.cloud&lt...
Mammary asked 28/3, 2015 at 19:5

4

Solved

I know should set following properties, but still confused about where they should be set. spring: cloud: config: allowOverride: true failFast: true overrideNone: false application.properti...
Kif asked 5/5, 2017 at 8:37

22

Solved

While creating Spring Boot cloud config application getting below error. Any help on this? No spring.config.import property has been defined Action: Add a spring.config.import=configserver: prop...
Elementary asked 12/5, 2021 at 16:23

6

Solved

I have a Spring-Boot application that use Spring Cloud Config and I'm trying to get the application's configuration file from Bitbucket. I was able to get the configuration file some time ago but n...
Parameter asked 22/2, 2021 at 17:55

6

Solved

I have tried to implement spring external configurations using Config Server. It is working fine for the very first time when the application is started but any changes to the properties file are n...
Frolic asked 15/3, 2018 at 23:43

8

Solved

Is it possible to use Spring Cloud Config without using any Git repo at all? I'm trying to test it with a local directory with this in application.properties: spring.cloud.config.server.git.uri=fi...
Stabler asked 16/10, 2015 at 19:44

5

Solved

My Spring Cloud Config Client has dependency to spring.cloud.starter.bus.amqp, but it is still not enabling /bus/refresh endpoint build.gradle compile("org.springframework.cloud:spring-cloud-star...
Abutting asked 12/5, 2017 at 21:32

6

Solved

I am creating a demo project for Spring-Config-Server and Spring-Config-Client. In SpringBoot 1.5.6.RELEASE everything is working fine. However, when I am upgrading project to 2.0.1.RELEASE it do...

3

Solved

I'm trying to migrate our stable of app servers to get their configuration from a Spring Cloud Config server. Each app has a {my-app}.yml file on the config server and we can use profiles (either i...
Duteous asked 19/4, 2016 at 19:6

5

I currently have a number of deployable applications that work in a distributed fashion to solve a business problem. We are currently using a number of property configuration files to provide chang...
Mousseline asked 21/4, 2015 at 20:0

14

Solved

I have a simple Spring Cloud Config Server which consume configuration from git server. ConfigServer bootstrap.yml : spring: application: name: config-service cloud: config: server: git: ...
Heiney asked 13/10, 2016 at 14:43

5

I have a bare Spring Boot application @SpringBootApplication public class ClientApplication { public static void main(String[] args) { SpringApplication.run(ClientApplication.class, args); } } ...
Zaxis asked 8/8, 2021 at 16:3

4

Solved

Hello I have a spring cloud config server setup. I have multiple profiles (environments): dev, prod, test, etc. the contents of bootstrap.properties on a config client side are- spring.application...
Seleneselenious asked 16/1, 2018 at 2:18

4

Solved

I'm hosting a configuration in a repo on GitHub. If I keep the repo public all's good, but if I make it private I face: org.eclipse.jgit.errors.TransportException: https://github.com/my-user/my-...
Smashup asked 7/10, 2016 at 17:7

5

I have developed config server using spring. My Application.java is @EnableConfigServer @SpringBootApplication public class SpringConfigServerApplication { public static void main(String[] args...
Ranchod asked 6/4, 2020 at 1:40

5

Solved

I'm trying to set up Spring Cloud Config Server with backend repository (filesystem), but the endpoint(http://localhost:8888/licensingservice/default) returns the following: {"name":"licensingserv...
Rounce asked 6/2, 2019 at 15:25

3

I am using gradle to build and here is my build.gradle Is there anything that I am missing in the gradle file repositories { mavenCentral() maven { url "https://repo.spring.io/libs-milestone" ...
Chalice asked 31/7, 2018 at 9:19

2

Solved

I have an application that we are migrating to the latest Spring Boot(2.4.2) and Spring Cloud(2020.0.1) versions. The application uses a Cloud Config Server to fetch the configurations and Refresh ...
Insufflate asked 11/2, 2021 at 14:6

4

I am working on Spring Boot Cloud using GIT. Using Spring Boot 2.2.2.RELEASE version. SpringBootCloudChap2ConfigServerGitApplication.java @SpringBootApplication @EnableConfigServer @EnableAutoCon...

2

Solved

I stored my MySQL DB credentials in AWS secrets manager using the Credentials for other database option. I want to import these credentials in my application.properties file. Based on a few answers...

4

Spring folks do a great job of releasing lots of quality projects. One of them we have been using is Spring Cloud and its various sub-projects. One aspect that is really confusing to me is Spring C...
Ipswich asked 8/2, 2017 at 21:27

5

When I run my Spring Cloud Config Client project config-client, I found these error: 2018-02-09 10:31:09.885 INFO 13933 --- [ main] c.c.c.ConfigServicePropertySourceLocator : Fetching config from ...
Jordon asked 9/2, 2018 at 3:4

5

I am getting the below error Caused by: java.lang.IllegalArgumentException: Could not resolve placeholder 'rate' in string value "${rate}" at org.springframework.util.PropertyPlaceholderHelper.pa...
Pilch asked 24/3, 2017 at 13:20

3

I am trying to setup Spring Cloud Config Server and want to enable auto refresh of properties based on changes to the backing git repository. Below is the bootstrap.yml of the server. server: po...
Cystoscope asked 19/3, 2019 at 11:29

3

Solved

I want to build a simple microservices app with spring cloud config server. I am using Github repository to store my configuration files. Currently, I have two very simple microservices. One of the...

© 2022 - 2025 — McMap. All rights reserved.