|
@@ -0,0 +1,23 @@
|
|
|
|
+package org.dbsyncer.manager;
|
|
|
|
+
|
|
|
|
+import org.dbsyncer.manager.deployment.StandaloneProvider;
|
|
|
|
+import org.dbsyncer.sdk.spi.DeploymentService;
|
|
|
|
+import org.springframework.boot.autoconfigure.condition.ConditionalOnMissingBean;
|
|
|
|
+import org.springframework.context.annotation.Bean;
|
|
|
|
+import org.springframework.context.annotation.Configuration;
|
|
|
|
+
|
|
|
|
+/**
|
|
|
|
+ * @author AE86
|
|
|
|
+ * @version 1.0.0
|
|
|
|
+ * @Date 2023-11-19 23:29
|
|
|
|
+ */
|
|
|
|
+@Configuration
|
|
|
|
+public class ManagerSupportConfiguration {
|
|
|
|
+
|
|
|
|
+ @Bean
|
|
|
|
+ @ConditionalOnMissingBean
|
|
|
|
+ public DeploymentService deploymentService() {
|
|
|
|
+ return new StandaloneProvider();
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+}
|