I have:
@FeignClient(name = "something", configuration = {TestConfigClass.class, FeignConfigExample.class})
when I remove FeignConfigExample.class and keep everything else, the source for FeignConfigExample is not re-validated (but it should).
When I remove the complete config attribute and turn this into:
@FeignClient(name = "something")
the re-validation of FeignConfigExample happens just fine.
I have:
@FeignClient(name = "something", configuration = {TestConfigClass.class, FeignConfigExample.class})when I remove
FeignConfigExample.classand keep everything else, the source forFeignConfigExampleis not re-validated (but it should).When I remove the complete config attribute and turn this into:
@FeignClient(name = "something")the re-validation of
FeignConfigExamplehappens just fine.