converter 직접 생성하여 사용

This commit is contained in:
eastargh
2026-06-23 10:35:39 +09:00
parent 124ecabccf
commit 62ae2d93ff
@@ -103,7 +103,7 @@ public class DbTrackingService extends BaseService {
private final TransformService transformService; private final TransformService transformService;
private final LayoutJdbcDao layoutJdbcDao; private final LayoutJdbcDao layoutJdbcDao;
private final LayoutService layoutService; private final LayoutService layoutService;
private final PersonalDataEncryptConverter encryptConverter; private final PersonalDataEncryptConverter encryptConverter = new PersonalDataEncryptConverter();
@Autowired @Autowired
private AdapterManService adapterManService; private AdapterManService adapterManService;
@@ -121,8 +121,7 @@ public class DbTrackingService extends BaseService {
ServiceMessageService serviceMessageService, ServiceMessageService serviceMessageService,
TransformService transformService, TransformService transformService,
LayoutJdbcDao layoutJdbcDao, LayoutJdbcDao layoutJdbcDao,
LayoutService layoutService, LayoutService layoutService) {
PersonalDataEncryptConverter encryptConverter) {
this.comboService = comboService; this.comboService = comboService;
this.eaiLogService = eaiLogService; this.eaiLogService = eaiLogService;
this.eaiLogUIMapper = eaiLogUIMapper; this.eaiLogUIMapper = eaiLogUIMapper;
@@ -135,7 +134,6 @@ public class DbTrackingService extends BaseService {
this.transformService = transformService; this.transformService = transformService;
this.layoutJdbcDao = layoutJdbcDao; this.layoutJdbcDao = layoutJdbcDao;
this.layoutService = layoutService; this.layoutService = layoutService;
this.encryptConverter = encryptConverter;
} }
public Page<EAILogUI> selectList(Pageable pageable, public Page<EAILogUI> selectList(Pageable pageable,