pnu-update 러너 추가, prod경로 수정

This commit is contained in:
2026-02-26 13:46:37 +09:00
parent 31bf386840
commit e8c141948a
2 changed files with 28 additions and 11 deletions

View File

@@ -0,0 +1,17 @@
package com.kamco.cd.kamcoback.service;
import lombok.RequiredArgsConstructor;
import org.springframework.boot.CommandLineRunner;
import org.springframework.stereotype.Component;
@Component
@RequiredArgsConstructor
public class PnuUpdateRunner implements CommandLineRunner {
private final GukYuinApiPnuJobService jobService;
@Override
public void run(String... args) {
jobService.findGukYuinContListPnuUpdate();
}
}