File tree Expand file tree Collapse file tree 1 file changed +9
-0
lines changed
src/main/kotlin/dsm/pick2024 Expand file tree Collapse file tree 1 file changed +9
-0
lines changed Original file line number Diff line number Diff line change 11package dsm.pick2024
22
3+ import dsm.pick2024.global.config.debezium.DebeziumClientProperties
4+ import dsm.pick2024.global.config.debezium.DebeziumProperties
5+ import dsm.pick2024.global.config.debezium.DebeziumRetryProperties
36import org.springframework.boot.autoconfigure.SpringBootApplication
47import org.springframework.boot.context.properties.ConfigurationPropertiesScan
8+ import org.springframework.boot.context.properties.EnableConfigurationProperties
59import org.springframework.boot.runApplication
610import org.springframework.cache.annotation.EnableCaching
711import org.springframework.scheduling.annotation.EnableScheduling
812
913@EnableCaching
1014@ConfigurationPropertiesScan
15+ @EnableConfigurationProperties(
16+ DebeziumProperties ::class ,
17+ DebeziumClientProperties ::class ,
18+ DebeziumRetryProperties ::class
19+ )
1120@EnableScheduling
1221@SpringBootApplication
1322class Pick2024ServerApplication
You can’t perform that action at this time.
0 commit comments