ZkSvcLookupCtrl.java
1.55 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
package com.ui.ctrl;
import com.ui.contants.HttpUriContants;
import com.ui.http.HttpRestClient;
import com.ui.model.BaseResponse;
import com.ui.model.req.ZkTreeReq;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;
import org.springframework.web.servlet.ModelAndView;
/**
* Created by craig.qin on 2017/7/3.
*/
@Controller
@RequestMapping("/zkSvcLookup")
public class ZkSvcLookupCtrl {
Logger log = LoggerFactory.getLogger(ZkSvcLookupCtrl.class);
@Autowired
private HttpRestClient httpClient;
@RequestMapping("/zkTree")
@ResponseBody
public String getZkTree() {
String strType = "";
strType = httpClient.defaultGet(HttpUriContants.TYPE_GET_ZKTREE, String.class);
return strType;
}
@RequestMapping("/tozkSvcLookupList")
public ModelAndView tozkSvcLookupList() {
return new ModelAndView("zkSvcLookup/zkSvcLookupList");
}
/**
* 获取zk下的所有注册的服务(服务名,子服务个数,注册服务的ip)
* @param req
* @return
*/
@RequestMapping("/getAllSvc")
@ResponseBody
public BaseResponse getRootSvc(ZkTreeReq req){
log.info("getRootSvc with req is {}",req);
BaseResponse response=httpClient.defaultPost(HttpUriContants.GET_ZK_SVC_LIST, req, BaseResponse.class);
return response;
}
}