| 知乎專欄 | 多維度架構 | | | 微信號 netkiller-ebook | | | QQ群:128659835 請註明“讀者” |
@Autowired
private TransportClient client;
@RequestMapping(value = "/article/{articleId}")
public GetResponse read(@PathVariable String articleId) {
GetResponse response = client.prepareGet("information", "article", articleId).get();
return response;
}