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

Modify NacosConfigProperties enableRemoteSyncConfig field annotation

This commit is contained in:
Purgeyao 2019-08-06 17:41:40 +08:00
parent 0e2ee9559b
commit 88caa1fe6c

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;
/**