1
0
mirror of https://gitee.com/mirrors/Spring-Cloud-Alibaba.git synced 2021-06-26 13:25:11 +08:00

Merge pull request #812 from forkstarteam/master

Modify NacosConfigProperties enableRemoteSyncConfig field annotation
This commit is contained in:
format 2019-08-06 18:57:07 +08:00 committed by GitHub
commit 26a05fad61
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -101,8 +101,11 @@ public class NacosConfigProperties {
private String configRetryTime;
/**
* nacos enable add a listener when the configuration is obtained.
*/
* If you want to pull it yourself when the program starts to get the configuration for the first time,
* and the registered Listener is used for future configuration updates, you can keep the original
* code unchanged, just add the system parameter: enableRemoteSyncConfig = "true" ( But there is network overhead);
* therefore we recommend that you use {@link ConfigService#getConfigAndSignListener} directly.
*/
private boolean enableRemoteSyncConfig = false;
/**