使用 springCloud 的 FeignClient 调用远程模块接口的例子

springCloud 的 Feign 是一种模板化的 http 客户端。

使用 @FeignClient 进行远程调用,它发送的是 http 请求。

用 FeignClient 调用远程模块接口的例子:

@FeignClient( name = "AC" )     // AC 是被调用的项目名
public interface GroupRemoteService {
    @RequestMapping( value = "/group/{groupId}", method = RequestMethod.GET )
    Group findByGroupId( @PathVariable( "groupId" ) Integer groupId );
    
    @RequestMapping( value = "/group", method = RequestMethod.POST )
    void save( Group group );
}

先注入 service ,然后调用 service 的方法
@Autowired
private GroupRemoteService service;

service.findByGroupId( param );

你可能感兴趣的:(java)