Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
W
windows
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
zhanhai
windows
Commits
288f12d5
Commit
288f12d5
authored
Sep 14, 2023
by
liuzicheng
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
初始化项目
parent
087d2770
Pipeline
#523
canceled with stages
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
9 deletions
+14
-9
CommandProxy.java
...in/java/com/jqtx/windows/common/factory/CommandProxy.java
+7
-1
BaseController.java
src/main/java/com/jqtx/windows/web/BaseController.java
+7
-8
No files found.
src/main/java/com/jqtx/windows/common/factory/CommandProxy.java
View file @
288f12d5
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
)
{
...
...
src/main/java/com/jqtx/windows/web/
Credit
Controller.java
→
src/main/java/com/jqtx/windows/web/
Base
Controller.java
View file @
288f12d5
...
...
@@ -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
Credit
Controller
{
@Api
(
tags
=
"
网关
接口"
)
public
class
Base
Controller
{
@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
);
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment