paascloud-master icon indicating copy to clipboard operation
paascloud-master copied to clipboard

paascloud-provider-api模块的作用是什么?

Open 10wjfang opened this issue 6 years ago • 2 comments

paascloud-provider-api模块的作用是什么?哪个模块调用了这个api模块

10wjfang avatar Nov 05 '18 02:11 10wjfang

没有get到你的点

paascloud avatar Nov 05 '18 12:11 paascloud

paascloud-provider-api里面定义了feign接口,这些接口没有实现吗?怎么调用这些接口?例如这个:

@FeignClient(value = "paascloud-provider-omc", configuration = OAuth2FeignAutoConfiguration.class, fallback = OmcOrderFeignHystrix.class)
public interface OmcOrderFeignApi {
	/**
	 * Update order by id wrapper.
	 *
	 * @param order the order
	 *
	 * @return the wrapper
	 */
	@PostMapping(value = "/api/order/updateOrderById")
	Wrapper updateOrderById(@RequestBody OrderDto order);
}

10wjfang avatar Nov 06 '18 01:11 10wjfang