Compare commits

...

2 Commits

Author SHA1 Message Date
zoujiangtao 0ed7e50f38 提交内容:BIP提交接口调用
备注:BIP提交接口调用
提交人:邹江涛
2024-12-19 16:47:30 +08:00
zoujiangtao dc9e2d9895 提交内容:BIP提交接口调用
备注:BIP提交接口调用
提交人:邹江涛
2024-12-19 16:47:09 +08:00
2 changed files with 8 additions and 1 deletions

View File

@ -48,7 +48,12 @@ public class BacklogServiceHandle extends AbstractServiceHandler {
try {
userName = RSAUtil.encrypt(query_one.getString("username"),RSAUtil.getPublicKeyFromString());
}catch (Exception e){
logger.info("####公钥加密出现异常,请联系运维人员排查!");
try {
logger.info("####公钥加密出现异常,请联系运维人员排查!\n加密数据{}\n加密公钥{}", query_one.getString("username"),
RSAUtil.getPublicKeyFromString());
} catch (Exception ex) {
logger.info("####RSAUtil.getPublicKeyFromString()错误,错误信息:{}", e);
}
ErrorCode errorCode = new ErrorCode("error_code", "公钥加密出现异常,请联系运维人员排查!");
throw new KDException(errorCode, e);
}

View File

@ -100,9 +100,11 @@ public class ApiMappingBillPlugin extends AbstractFormPlugin implements Plugin {
String text = codeEdit.getText();
Object obj = JSON.parse(text);
if (obj instanceof JSONObject) {
logger.info("解析JSON字符串 → text{}\nJSON字符串解析为JSONObject", text);
JSONObject jsonObject = JSON.parseObject(text);
parseJson(jsonObject, 1, null);
} else if (obj instanceof JSONArray) {
logger.info("解析JSON字符串 → text{}\nJSON字符串解析为JSONArray", text);
JSONArray jsonArray = JSON.parseArray(text);
parseJson(jsonArray, 1, null);
}