Describe the bug According to the documentation, overriding the default configuration does not take effect. Prompt me that the name is not legitimate version: 2.0.0.RELEASE

Sample Spring Cloud Openfeign Overriding Feign Defaults Problem Spring Cloud Openfeign Overriding Feign Defaults Problem

Comment From: OlgaMaciaszek

Hello @mloine, 2.0.0.RELEASE is no longer supported. Please upgrade to a supported version (3.1.6 or4.0.1`). If the issue still persists, please provide a minimal, complete, verifiable example that reproduces the issue.

Comment From: mloine

I have upgrade to a supported version 3.1.6. the issue still persists. this is a minimal, complete, verifiable example . fegin-issure-demo.zip

Comment From: cbezmen

Hey @mloine ,

You have a type in the application properties. In Feign client you defined as ${feign1.name}. However, in the properties file, you defined it as fegin1.name=mloine-service. Change your property file to feign1.name=mloine-service and it will work.

feignClass applicationProperties

Comment From: OlgaMaciaszek

@cbezmen thanks so much for triaging this issue (and many others) before we had time to look at it :slightly_smiling_face: - it's really helpful. @mloine - please try applying @cbezmen's suggestion - it should fix your issue.

Comment From: mloine

@cbezmen thank you . I was too careless .