pnu-update 러너 추가, prod경로 수정
This commit is contained in:
@@ -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();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user