개발서버에 push위해

This commit is contained in:
jaewohong
2025-11-19 15:59:34 +09:00
parent 63561457d2
commit c2ead22583
8 changed files with 429 additions and 63 deletions
@@ -53,6 +53,10 @@ import com.eactive.eai.message.parser.StandardReader;
import com.eactive.eai.message.service.InterfaceMapper;
import com.eactive.eai.util.SimHeaderUtil;
import com.ext.eai.common.stdmessage.STDMessageKeys;
import org.json.simple.JSONObject;
import java.util.HashMap;
import java.util.Map;
//import org.apache.commons.lang3.StringUtils;
//import org.springframework.http.HttpStatus;
@@ -1297,7 +1301,15 @@ public class RequestProcessor extends RequestProcessorSupport {
}
else {
// 비동기 거래, S-A의 응답거래시에는 NULL을 리턴
return null;
//return null; // 원래 null return 인데 광주은행은 GUID를 Return 해 달라고 해서 수정함 jwhong
//map.put("guid", guid);
Map<String, String> map = new HashMap<>();
map.put("uuid", vo.getUuid());
JSONObject json = new JSONObject(map);
//return json.toJSONString();
return vo.getUuid();
}
}