HystrixInfoCtrl.java 1.52 KB
package com.ui.ctrl;

import java.util.List;

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 com.ui.contants.HttpUriContants;
import com.ui.http.HttpRestClient;
import com.ui.model.BaseResponse;
import com.ui.model.req.HystrixInfoReq;

@Controller
@RequestMapping("hystrixInfo")
public class HystrixInfoCtrl {

    @Autowired
    private HttpRestClient httpClient;

    @SuppressWarnings("unchecked")
	@RequestMapping("/info")
	public ModelAndView getHystrixInfoInitList(Model model) {
		BaseResponse<List<String>> categories = httpClient.defaultPost(HttpUriContants.GET_HYSTRIX_FUNCTION, null,
				BaseResponse.class);
		List<String> catList = categories.getData();
		if (catList != null && !catList.isEmpty()) {
			model.addAttribute("categories", catList);
		}
		return new ModelAndView("hystrixInfo/hystrixInfoList");
	}

    @ResponseBody
    @RequestMapping("/getList")
    public BaseResponse<?> getHystrixInfoList(HystrixInfoReq req) {

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

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