fix(스케줄러): Quartz PostgreSQLDelegate BYTEA 컬럼 읽기 오류 수정 (#12) #53
@ -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);
|
||||
}
|
||||
});
|
||||
|
||||
불러오는 중...
Reference in New Issue
Block a user