lqscript

Results 8 comments of lqscript

> In short, the problem is that the service is registered with one name, while service discovery uses another name. I will fix this. Thank you for confirming the fix!...

> ### Steps to reproduce this issue > [Application-level service discovery fails when IDL `package` and `java_package` differ](https://github.com/lqscript/dubbo-samples/tree/master/1-basic/dubbo-samples-spring-boot-idl) @wcy666103

> could you submit a new pr at https://github.com/apache/dubbo-samples to add a new sample module to confirm this pr? https://github.com/apache/dubbo-samples/pull/1220

> version compatibility should also be considered. > > client server > old new > new old Given issue #15365, this incompatibility should only occur in interface-level service discovery scenarios...

I looked at the source code, and if i make this change, it would require modifications in many places... I think if incompatibility issues are actually encountered, changing the package...

I found that the serviceKey is not only used for service discovery, but also for routing and circuit breaking. Therefore, using the `all` approach may not be appropriate, as some...

@zrlw I also encountered this issue. I found that this problem does not occur if the service class directly implements the service interface (e.g., `implements GreeterService`) in[ dubbo-demo](https://github.com/apache/dubbo/blob/3.3/dubbo-demo/dubbo-demo-spring-boot-idl/dubbo-demo-spring-boot-idl-provider/src/main/java/org/apache/dubbo/springboot/idl/demo/provider/GreeterServiceImpl.java). However, if...