CacheInfoCtrl.java 2.07 KB
package com.ui.ctrl;

import com.ui.contants.HttpUriContants;
import com.ui.http.HttpRestClient;
import com.ui.model.BaseResponse;
import com.ui.model.req.CacheInfoReq;
import com.ui.model.req.ZkDetailReq;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;
import org.springframework.web.servlet.ModelAndView;

import java.util.List;

@Controller
@RequestMapping("cacheInfo")
public class CacheInfoCtrl {

    @Autowired
    private HttpRestClient httpClient;

    @SuppressWarnings("unchecked")
	@RequestMapping("/info")
	public ModelAndView getCacheInfoInitList(Model model) {
        BaseResponse zkListResponse=httpClient.defaultGet(HttpUriContants.TYPE_GET_ZK_LEAF, BaseResponse.class);
        if(zkListResponse!=null&&zkListResponse.getCode()==200&&zkListResponse.getData()!=null){
            model.addAttribute("zkList",zkListResponse.getData());
        }

		BaseResponse<List<String>> categories = httpClient.defaultPost(HttpUriContants.GET_CACHE_FUNCTION, null,
				BaseResponse.class);
		List<String> catList = categories.getData();
		if (catList != null && !catList.isEmpty()) {
			model.addAttribute("categories", catList);
		}
		return new ModelAndView("cacheInfo/cacheInfoList");
	}

    @ResponseBody
    @RequestMapping("/getList")
    public BaseResponse<?> getCacheInfoList(CacheInfoReq req) {

        return httpClient.defaultPost(HttpUriContants.GET_CACHE_INFO,req,BaseResponse.class);
    }


    @ResponseBody
    @RequestMapping("/getZkMonitorValue")
    public BaseResponse getZkMonitorValue(ZkDetailReq req) {
        BaseResponse response = httpClient.defaultPost(HttpUriContants.GET_ZK_VALUE, req, BaseResponse.class);
        return  response;
    }

    @ResponseBody
    @RequestMapping("/edit")
    public BaseResponse<?> editCacheInfo(CacheInfoReq req) {
        return httpClient.defaultPost(HttpUriContants.EDIT_CACHE_INFO,req,BaseResponse.class);
    }
}