fix(스케줄러): Quartz PostgreSQLDelegate BYTEA 컬럼 읽기 오류 수정 (#12) #53

병합
HYOJIN bugfix/ISSUE-12-quartz-postgresql-delegate 에서 develop 로 3 commits 를 머지했습니다 2026-03-16 18:24:15 +09:00
Showing only changes of commit db0461e416 - Show all commits

파일 보기

@ -40,10 +40,11 @@ public class QuartzConfig {
factory.setAutoStartup(false);
// application.yml의 spring.quartz.properties 적용
// jobStore.class와 driverDelegateClass는 setDataSource() 내부적으로 설정하므로 제외
// jobStore.class는 setDataSource() LocalDataSourceJobStore로 대체하므로 제외
// driverDelegateClass는 PostgreSQLDelegate가 필요하므로 유지
Properties properties = new Properties();
quartzProperties.getProperties().forEach((key, value) -> {
if (!key.contains("jobStore.class") && !key.contains("driverDelegateClass")) {
if (!key.contains("jobStore.class")) {
properties.put(key, value);
}
});