Spring Cloud OpenFeign:基于Ribbon和Hystrix的声明式服务调用
import org.springframework.cloud.openfeign.FeignClient;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestParam;
@FeignClient(name = "example-service", url = "${service.example.url}")
public interface ExampleServiceClient {
@GetMapping("/data")
String getData(@RequestParam(value = "param") String param);
}
这个示例代码定义了一个ExampleServiceClient
接口,使用@FeignClient
注解指定服务名称和URL。然后通过@GetMapping
注解定义了一个getData
方法,该方法用于从远程服务获取数据。这里的name
和url
属性可以通过配置文件动态配置,以便于服务间的解耦和灵活配置。
评论已关闭