Coder Social home page Coder Social logo

Comments (2)

dsyer avatar dsyer commented on September 13, 2024

Why did you think that was a copy/paste error? What did you do exactly and what did you observe? (I believe there are tests for changing the bootstrap location that work just fine.)

from spring-cloud-config.

crusi avatar crusi commented on September 13, 2024

Hi,

we want to change the location of the config server by defining a bootstrap.yml/properties on certain environments. There was no test until now. I addd one in the pull-request with an external bootstrap.properties

Let's assume i have a spring boot application configured with spring cloud config client here:

/opt/portal/portal.jar

which has in the classpath a bootstrap.yml like this:

....
spring:
  cloud:
    config:
      uri: http://localhost:8686/config
....

And i have a bootstrap.properties under /etc/conf/portal with


spring.cloud.config.uri=http://localhost:1234/config

When i change to the directory /opt/ and start from there

java -jar portal/portal.jar --spring.cloud.bootstrap.location=/etc/conf/portal/bootstrap.properties 

it will not be used. I still get the properties from the bootstrap.properties included into the jar.

I fixed line 95 from

        if (StringUtils.hasText(configLocation)) {
            bootstrapMap.put("spring.config.location", configName);
        }

to

        if (StringUtils.hasText(configLocation)) {
            bootstrapMap.put("spring.config.location", configLocation);
        }

Hope this clarifies the problem a little bit.

Cheers
Stefan

from spring-cloud-config.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.