|
|
@ -41,6 +41,9 @@ import org.springframework.util.CollectionUtils;
|
|
|
|
public class ConfigurationModifier implements PolarisConfigModifier {
|
|
|
|
public class ConfigurationModifier implements PolarisConfigModifier {
|
|
|
|
private static final Logger LOGGER = LoggerFactory.getLogger(ConfigurationModifier.class);
|
|
|
|
private static final Logger LOGGER = LoggerFactory.getLogger(ConfigurationModifier.class);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
private static final String DATA_SOURCE_POLARIS = "polaris";
|
|
|
|
|
|
|
|
private static final String DATA_SOURCE_LOCAL = "local";
|
|
|
|
|
|
|
|
|
|
|
|
private final PolarisConfigProperties polarisConfigProperties;
|
|
|
|
private final PolarisConfigProperties polarisConfigProperties;
|
|
|
|
|
|
|
|
|
|
|
|
private final PolarisContextProperties polarisContextProperties;
|
|
|
|
private final PolarisContextProperties polarisContextProperties;
|
|
|
@ -53,6 +56,27 @@ public class ConfigurationModifier implements PolarisConfigModifier {
|
|
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
@Override
|
|
|
|
public void modify(ConfigurationImpl configuration) {
|
|
|
|
public void modify(ConfigurationImpl configuration) {
|
|
|
|
|
|
|
|
if (StringUtils.equalsIgnoreCase(polarisConfigProperties.getDataSource(), DATA_SOURCE_POLARIS)) {
|
|
|
|
|
|
|
|
initByPolarisDataSource(configuration);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
else if (StringUtils.equalsIgnoreCase(polarisConfigProperties.getDataSource(), DATA_SOURCE_LOCAL)) {
|
|
|
|
|
|
|
|
initByLocalDataSource(configuration);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
else {
|
|
|
|
|
|
|
|
throw new RuntimeException("Unsupported config data source");
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
private void initByLocalDataSource(ConfigurationImpl configuration) {
|
|
|
|
|
|
|
|
configuration.getConfigFile().getServerConnector().setConnectorType("localFile");
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
String localFileRootPath = polarisConfigProperties.getLocalFileRootPath();
|
|
|
|
|
|
|
|
configuration.getConfigFile().getServerConnector().setPersistDir(localFileRootPath);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
LOGGER.info("[SCT] Run spring cloud tencent config with local data source. localFileRootPath = {}", localFileRootPath);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
private void initByPolarisDataSource(ConfigurationImpl configuration) {
|
|
|
|
// set connector type
|
|
|
|
// set connector type
|
|
|
|
configuration.getConfigFile().getServerConnector().setConnectorType("polaris");
|
|
|
|
configuration.getConfigFile().getServerConnector().setConnectorType("polaris");
|
|
|
|
|
|
|
|
|
|
|
@ -75,6 +99,8 @@ public class ConfigurationModifier implements PolarisConfigModifier {
|
|
|
|
checkAddressAccessible(configAddresses);
|
|
|
|
checkAddressAccessible(configAddresses);
|
|
|
|
|
|
|
|
|
|
|
|
configuration.getConfigFile().getServerConnector().setAddresses(configAddresses);
|
|
|
|
configuration.getConfigFile().getServerConnector().setAddresses(configAddresses);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
LOGGER.info("[SCT] Run spring cloud tencent config in polaris data source.");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
@Override
|
|
|
|