按规范修改

pull/19/head
暮光:城中城 6 years ago
parent e96418e346
commit fb0d78ea7a

@ -288,6 +288,9 @@ public class MgDocumentController {
* @author
* @since 2018821
* @param resourcesUrl swagger-resources
* @param oldUrl
* @param openVisit
* @param rewriteDomainUrl
* @return
*/
@PostMapping(value = "/addSwaggerResources")
@ -388,6 +391,7 @@ public class MgDocumentController {
*
* @author
* @since 2018821
* @return Location
*/
@PostMapping(value = "/getLocationList")
public ResponseJson<List<LocationListVo>> getLocationList() {

@ -4,15 +4,16 @@ import cn.hutool.http.HttpRequest;
import com.alibaba.fastjson.JSON;
import com.alibaba.fastjson.TypeReference;
import com.zyplayer.doc.core.json.DocResponseJson;
import com.zyplayer.doc.core.json.ResponseJson;
import com.zyplayer.doc.swagger.controller.vo.LocationListVo;
import com.zyplayer.doc.swagger.controller.vo.SwaggerResourcesInfoVo;
import com.zyplayer.doc.swagger.framework.constant.StorageKeys;
import com.zyplayer.doc.swagger.framework.service.MgStorageService;
import org.apache.commons.lang.StringUtils;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.web.bind.annotation.*;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;
import org.springframework.web.bind.annotation.RestController;
import javax.annotation.Resource;
import javax.servlet.http.HttpServletRequest;
@ -39,18 +40,6 @@ public class MgOpenDocController {
return DocResponseJson.ok();
}
/**
* @author
* @since 2019127
*/
@ResponseBody
@PostMapping(value = "/{source}")
public ResponseJson<List<SwaggerResourcesInfoVo>> resourcesList(@PathVariable("source") String source) {
return DocResponseJson.ok();
}
/**
*
* @author

@ -55,7 +55,8 @@ public class SpringContextUtil implements ApplicationContextAware {
/**
* EnableSwaggerMgUi
* @date 2019/1/29 12:58
* @since 2019/1/29 12:58
* @return EnableSwaggerMgUi
**/
public static EnableSwaggerMgUi getEnableSwaggerMgUi() {
if (ENABLE_SWAGGER_MG_UI != null) {

@ -52,6 +52,7 @@ public interface MgStorageService {
*
* @author
* @since 2018819
* @return
*/
List<String> getProxyRequestWhiteDomain();
@ -59,6 +60,7 @@ public interface MgStorageService {
* ID
* @author
* @since 2019127
* @return ID
*/
default Integer getNextId() {
synchronized (StorageKeys.SWAGGER_ID_WORKER) {

Loading…
Cancel
Save