Commit 288f12d5 authored by liuzicheng's avatar liuzicheng

初始化项目

parent 087d2770
Pipeline #523 canceled with stages
package com.jqtx.windows.common.factory;
import cn.hutool.core.util.ObjectUtil;
import com.alibaba.fastjson.JSON;
import com.alibaba.fastjson.JSONObject;
import com.jqtx.windows.common.exception.BizException;
import com.jqtx.windows.infrastructure.enums.ExceptionCodeEnum;
import com.jqtx.windows.utils.AbcRsaUtil;
import com.jqtx.windows.web.config.RouterConfig;
import com.jqtx.windows.web.response.JsonResult;
import lombok.extern.slf4j.Slf4j;
import org.apache.commons.lang3.StringUtils;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.stereotype.Service;
@Service
@Slf4j
public class CommandProxy {
@Value("${abc.publicKey}")
......@@ -36,7 +39,10 @@ public class CommandProxy {
ChannelConfig channelConfig = new ChannelConfig();
channelConfig.setAppId(appId);
this.setLocalContext(requestBody,channelConfig);
return command.doAction();
log.info("[浙农请求request:处理command:{}------------>{}]",command.getClass().getSimpleName(),decodeBody);
JsonResult result = command.doAction();
log.info("[浙农请求response:处理command:{}=============>{}]",command.getClass().getSimpleName(),JSON.toJSONString(result));
return result;
}
public void setLocalContext(String requestBody, ChannelConfig channelConfig) {
......
......@@ -6,23 +6,22 @@ import com.jqtx.windows.web.response.JsonResult;
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiOperation;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
import javax.servlet.http.HttpServletRequest;
@RestController
@RequestMapping("/zhenong/v1")
@Api(tags = "授信接口")
public class CreditController {
@Api(tags = "网关接口")
public class BaseController {
@Autowired
private CommandProxy commandProxy;
@ApiOperation(value = "提交授信")
@PostMapping("/credit_submit")
public JsonResult creditSubmit(HttpServletRequest request, String requestBody) {
return commandProxy.call(requestBody,request.getRequestURI());
@ApiOperation(value = "网关接口")
@PostMapping("/{url}")
public JsonResult creditSubmit(@PathVariable String url, String requestBody) {
return commandProxy.call(requestBody,url);
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment