Merge pull request #2355 from ZShUn/dev-1.2.0
1.NacosProperties注解添加username password参数
This commit is contained in:
commit
de836a6e2b
@ -96,6 +96,17 @@ public @interface NacosProperties {
|
|||||||
*/
|
*/
|
||||||
String ENABLE_REMOTE_SYNC_CONFIG = "enableRemoteSyncConfig";
|
String ENABLE_REMOTE_SYNC_CONFIG = "enableRemoteSyncConfig";
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The property name of "username"
|
||||||
|
*/
|
||||||
|
String USERNAME = "username";
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The property name of "password"
|
||||||
|
*/
|
||||||
|
String PASSWORD = "password";
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The placeholder of endpoint, the value is <code>"${nacos.endpoint:}"</code>
|
* The placeholder of endpoint, the value is <code>"${nacos.endpoint:}"</code>
|
||||||
*/
|
*/
|
||||||
@ -156,6 +167,16 @@ public @interface NacosProperties {
|
|||||||
*/
|
*/
|
||||||
String ENABLE_REMOTE_SYNC_CONFIG_PLACEHOLDER = "${" + PREFIX + ENABLE_REMOTE_SYNC_CONFIG + ":}";
|
String ENABLE_REMOTE_SYNC_CONFIG_PLACEHOLDER = "${" + PREFIX + ENABLE_REMOTE_SYNC_CONFIG + ":}";
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The placeholder of endpoint, the value is <code>"${nacos.username:}"</code>
|
||||||
|
*/
|
||||||
|
String USERNAME_PLACEHOLDER = "${" + PREFIX + USERNAME + ":}";
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The placeholder of endpoint, the value is <code>"${nacos.password:}"</code>
|
||||||
|
*/
|
||||||
|
String PASSWORD_PLACEHOLDER = "${" + PREFIX + PASSWORD + ":}";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The property of "endpoint"
|
* The property of "endpoint"
|
||||||
*
|
*
|
||||||
@ -252,4 +273,20 @@ public @interface NacosProperties {
|
|||||||
*/
|
*/
|
||||||
String enableRemoteSyncConfig() default ENABLE_REMOTE_SYNC_CONFIG_PLACEHOLDER;
|
String enableRemoteSyncConfig() default ENABLE_REMOTE_SYNC_CONFIG_PLACEHOLDER;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The property of "username"
|
||||||
|
*
|
||||||
|
* @return empty as default value
|
||||||
|
* @see #USERNAME_PLACEHOLDER
|
||||||
|
*/
|
||||||
|
String username() default USERNAME_PLACEHOLDER;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The property of "password"
|
||||||
|
*
|
||||||
|
* @return empty as default value
|
||||||
|
* @see #PASSWORD_PLACEHOLDER
|
||||||
|
*/
|
||||||
|
String password() default PASSWORD_PLACEHOLDER;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user