Could not resolve placeholder 'feign.client.config.remoteRepositoryService.url'

You’re defining application.properties and application.yml, which would have likely caused you grief. But ultimately, you’re overriding the properties file with

@PropertySource(value = "classpath:environment.properties")

You’ll need to move your feign properties into environment.properties.

1 Like