apache / dubbo

The java implementation of Apache Dubbo. An RPC and microservice framework.
https://dubbo.apache.org/
Apache License 2.0
40.55k stars 26.44k forks source link

Without interface definition, only knows the interface name and method name, can i invoke dubbo dynaically? #975

Closed civism closed 6 years ago

civism commented 7 years ago

I am developing a distributed schedule system based on dubbo services. In order to invoke the remote dubbo service, i must have all the service definition on the schedule system. Is it possible to invoke a remote service without the service definition(.class file)?

lovepoem commented 7 years ago

https://github.com/elasticjob/elastic-job this can help you. RPC call is unnecessary to finish your requirement in a dubbo distributed system A good schedule system should be ceterless.

chickenlj commented 7 years ago

Generic Reference may help.