ooooo-youwillsee commented on issue #9116:
URL: https://github.com/apache/dubbo/issues/9116#issuecomment-951875944
yes
I have one configuration class , for example:
```
@Configuration
public class XXXConfiguration {
@DubboReference
private SomeService someService;
@Bean
public AnotherService anotherService() {
return new AnotherService() {
public void invoke() {
someService.invokeSomeMethod();
}
}
}
```
but I can't test , because someService must use register center
--
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]