feign icon indicating copy to clipboard operation
feign copied to clipboard

How to use feign call the same interface of all instances?

Open charliecat22 opened this issue 2 years ago • 1 comments

There are 3 instances of the same project started on eureka.

I want to call all the interface of 3 instances by one feign interface.

@FeignClient(value = "project-test")
public interface TestFeign{
    @PostMapping("/test")
    void test();
}

But now,feign just call one of them.

How can I call 3 projects at the same time?

charliecat22 avatar May 22 '22 02:05 charliecat22

i don't understand your question.. i understood like below sentence

you called feign-client interface 3 times at sametime, but feign-client worked only one time.

tmdgusya avatar Jun 22 '22 15:06 tmdgusya

Questions like this are more appropriate for Stack Overflow. Issues in this repository are for bug fixes and feature requests for the project.

kdavisk6 avatar Oct 07 '22 20:10 kdavisk6