kevinw66 commented on issue #8290:
URL: https://github.com/apache/dubbo/issues/8290#issuecomment-879752095
使用RegistryConfig.setGroup()设置分组
```
@Bean
public RegistryConfig registryConfig() {
RegistryConfig registryConfig = new RegistryConfig();
registryConfig.setAddress("nacos://127.0.0.1:8848");
registryConfig.setGroup("dev");
return registryConfig;
}
```
或者
`<dubbo:registry group="dev" address="nacos://127.0.0.1:8848"/>`
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]