개발서버에 push위해

This commit is contained in:
jaewohong
2025-11-19 16:17:01 +09:00
parent 2b06607d52
commit d808ce9958
2 changed files with 3 additions and 2 deletions
@@ -49,7 +49,7 @@ public class ApiAdapterController implements HttpAdapterServiceKey {
@Autowired @Autowired
ApiAdapterService service; ApiAdapterService service;
/** /**
* KBANK 요구사항으로 /api/v1/oauth/token 과 같은 형태로 토큰 발급거래를 수행해야해서 예외처리함 * KBANK 요구사항으로 /api/v1/oauth/token 과 같은 형태로 토큰 발급거래를 수행해야해서 예외처리함
* @See com.eactive.eai.authserver.config.AuthorizationServerConfig.configure(AuthorizationServerEndpointsConfigurer endpoints) * @See com.eactive.eai.authserver.config.AuthorizationServerConfig.configure(AuthorizationServerEndpointsConfigurer endpoints)
@@ -221,6 +221,7 @@ public class ApiAdapterController implements HttpAdapterServiceKey {
InboundErrorLogger.error(errorInfoVO); InboundErrorLogger.error(errorInfoVO);
} }
/*
private String makeResponseBodyMsg(String asyncMsgStyle) { private String makeResponseBodyMsg(String asyncMsgStyle) {
Map<String, Object> dataMap = new HashMap<>(); Map<String, Object> dataMap = new HashMap<>();
@@ -249,6 +250,7 @@ public class ApiAdapterController implements HttpAdapterServiceKey {
return json.toJSONString(); return json.toJSONString();
} }
*/
} }
@@ -76,7 +76,6 @@ public class ApiAdapterService extends HttpAdapterServiceSupport {
String adptGrpName = adapterGroupVO.getName(); String adptGrpName = adapterGroupVO.getName();
String adptName = adapterVO.getName(); String adptName = adapterVO.getName();
String urlDecodeYn = httpProp.getProperty(URL_DECODE_YN, "N"); String urlDecodeYn = httpProp.getProperty(URL_DECODE_YN, "N");
String encode = StringUtils.defaultIfBlank(adapterGroupVO.getMessageEncode(), "UTF-8"); String encode = StringUtils.defaultIfBlank(adapterGroupVO.getMessageEncode(), "UTF-8");