인터페이스 미확인 오류 로그- 업무데이타 내용 복호화
eapim-admin CI / build (push) Has been cancelled

This commit is contained in:
eastargh
2026-08-10 13:40:19 +09:00
parent 38902cf6b3
commit 04b4d415a9
@@ -1,11 +1,13 @@
package com.eactive.eai.rms.onl.manage.comm.error;
import org.apache.commons.lang3.StringUtils;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.data.domain.Page;
import org.springframework.data.domain.Pageable;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;
import com.eactive.apim.portal.jpa.PersonalDataEncryptConverter;
import com.eactive.eai.rms.common.base.BaseService;
import com.eactive.eai.rms.data.entity.onl.adapter.AdapterGroupService;
import com.eactive.eai.rms.data.entity.onl.inbound.error.InboundErrorInfoSearch;
@@ -21,6 +23,8 @@ public class InboundErrorInfoManService extends BaseService {
private AdapterGroupService adapterGroupService;
private final PersonalDataEncryptConverter encryptConverter = new PersonalDataEncryptConverter();
@Autowired
public InboundErrorInfoManService(InboundErrorInfoService inboundErrorInfoService,
InboundErrorInfoUIMapper inboundErrorInfoUIMapper, AdapterGroupService adapterGroupService) {
@@ -44,6 +48,10 @@ public class InboundErrorInfoManService extends BaseService {
});
}
if (StringUtils.isNotBlank(ui.getBzwkDataCtnt())) {
ui.setBzwkDataCtnt(encryptConverter.convertToEntityAttribute(ui.getBzwkDataCtnt()));
}
return ui;
}