Authored by bblu

增加注释

... ... @@ -13,7 +13,6 @@ import org.springframework.web.bind.annotation.ResponseBody;
import org.springframework.web.servlet.ModelAndView;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
/**
... ... @@ -31,7 +30,9 @@ public class LbSwitchCtrl {
HttpRestClient httpRestClient;
/**
* @return
* 展示当前配置
*
* @return ModelAndView
*/
@RequestMapping(value = "toLbSwitch")
public ModelAndView viewNginxConf() {
... ... @@ -45,27 +46,28 @@ public class LbSwitchCtrl {
}
/**
* 修改配置
* 展示修改后的配置文件内容
*
* @return 2016年5月12日下午1:49:48
* @param status 状态:1-开启;2-关闭
* @return BaseResponse
*/
@RequestMapping(value = "viewToChangeLbConf")
@ResponseBody
public BaseResponse viewToChangeLbConf(String status) {
Map map = new HashMap<>();
Map<String, Object> map = new HashMap<>();
map.put("status", status);
return httpRestClient.defaultGet(HttpUriContants.VIEW_TOCHANGE_LB_CONF, BaseResponse.class, map);
}
/**
* 修改配置
* 修改配置,并重启nginx
*
* @return 2016年5月12日下午1:49:48
* @return BaseResponse
*/
@RequestMapping(value = "switchConf")
@ResponseBody
public BaseResponse switchConf() {
Map map = new HashMap<>();
Map<String, Object> map = new HashMap<>();
return httpRestClient.defaultGet(HttpUriContants.SWITCH_LB, BaseResponse.class, map);
}
... ...
... ... @@ -30,9 +30,9 @@ public class LimitSwitchCtrl {
HttpRestClient httpRestClient;
/**
* 查看nginx配置
* 展示当前配置
*
* @return 2016年5月12日下午1:49:48
* @return ModelAndView
*/
@RequestMapping(value = "toLimitSwitch")
public ModelAndView viewNginxConf() {
... ... @@ -48,14 +48,17 @@ public class LimitSwitchCtrl {
}
/**
* 修改配置
* 展示修改后配置文件内容
*
* @return 2016年5月12日下午1:49:48
* @param openLimitFlow 限流开关true/false
* @param limitConfig api接口限流配置
* @param limitServiceConfig service接口限流配置
* @return BaseResponse
*/
@RequestMapping(value = "viewToChangeLimitConf")
@ResponseBody
public BaseResponse viewToChangeLimitConf(String openLimitFlow, String limitConfig, String limitServiceConfig) {
Map map = new HashMap<>();
Map<String, Object> map = new HashMap<>();
map.put("limitFlow", openLimitFlow);
map.put("apiConfs", limitConfig);
map.put("serviceConfs", limitServiceConfig);
... ... @@ -63,14 +66,14 @@ public class LimitSwitchCtrl {
}
/**
* 修改配置
* 修改配置,并重启nginx
*
* @return 2016年5月12日下午1:49:48
* @return BaseResponse
*/
@RequestMapping(value = "switchConf")
@ResponseBody
public BaseResponse switchConf() {
Map map = new HashMap<>();
Map<String, Object> map = new HashMap<>();
return httpRestClient.defaultGet(HttpUriContants.SWITCH_LIMIT, BaseResponse.class, map);
}
... ...
... ... @@ -6,18 +6,18 @@ import com.ui.model.BaseResponse;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.core.ParameterizedTypeReference;
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;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
/**
* @author zhengyouwei 2016年5月12日 下午1:49:55
* 中心入口切换
*
* @author bblu 2016-10-27
*/
@Controller
@RequestMapping("luaswitch")
... ... @@ -29,40 +29,41 @@ public class LuaSwitchCtrl {
HttpRestClient httpRestClient;
/**
* 查看nginx配置
* 展示当前配置
*
* @return 2016年5月12日下午1:49:48
* @return ModelAndView
*/
@RequestMapping(value = "toLuaSwitch")
public ModelAndView viewNginxConf() {
String response = httpRestClient.defaultGet(HttpUriContants.VIEW_LUA_CONF, String.class,null );
String response = httpRestClient.defaultGet(HttpUriContants.VIEW_LUA_CONF, String.class, null);
ModelAndView mdv = new ModelAndView("switch/luaSwitch");
mdv.addObject("conf", response);
return mdv;
}
/**
* 修改配置
* 展示修改后配置文件内容
*
* @return 2016年5月12日下午1:49:48
* @param cloudName 目标中心名称
* @return BaseResponse
*/
@RequestMapping(value = "viewToChangeLuaConf")
@ResponseBody
public BaseResponse viewToChangeLuaConf(String cloudName) {
Map map = new HashMap<>();
map.put("cloudName",cloudName);
Map<String, Object> map = new HashMap<>();
map.put("cloudName", cloudName);
return httpRestClient.defaultGet(HttpUriContants.VIEW_TOCHANGE_LUA_CONF, BaseResponse.class, map);
}
/**
* 修改配置
* 切换配置,并重启nginx
*
* @return 2016年5月12日下午1:49:48
* @return BaseResponse
*/
@RequestMapping(value = "switchConf")
@ResponseBody
public BaseResponse switchConf() {
Map map = new HashMap<>();
Map<String, Object> map = new HashMap<>();
return httpRestClient.defaultGet(HttpUriContants.SWITCH_LUA, BaseResponse.class, map);
}
... ...
... ... @@ -17,7 +17,9 @@ import java.util.List;
import java.util.Map;
/**
* @author zhengyouwei 2016年5月12日 下午1:49:55
* nginx->gateway切换
*
* @author bblu 2016-10-27
*/
@Controller
@RequestMapping("nginxswitch")
... ... @@ -29,9 +31,9 @@ public class NginxSwitchCtrl {
HttpRestClient httpRestClient;
/**
* 查看nginx配置
* 展示当前配置
*
* @return 2016年5月12日下午1:49:48
* @return ModelAndView
*/
@RequestMapping(value = "toNginxSwitch")
public ModelAndView viewNginxConf() {
... ... @@ -45,9 +47,10 @@ public class NginxSwitchCtrl {
}
/**
* 修改配置
* 修改配置,并重启nginx
*
* @return 2016年5月12日下午1:49:48
* @param cloudName 源中心名称
* @return BaseResponse
*/
@RequestMapping(value = "switchNginxConf")
@ResponseBody
... ... @@ -58,9 +61,13 @@ public class NginxSwitchCtrl {
}
/**
* 修改配置
* 展示修改后配置文件内容
*
* @return 2016年5月12日下午1:49:48
* @param cloudName 源中心名称
* @param target 目标中心名称
* @param onlineOrGray 线上/灰度切换
* @param noChangeIps 不变更配置的ip
* @return BaseResponse
*/
@RequestMapping(value = "viewToChangeNginxConf")
@ResponseBody
... ...