Skip to main content

Notice: This Wiki is now read only and edits are no longer possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Dubbo Service Properties

Revision as of 16:36, 19 October 2019 by Unnamed Poltroon (Talk)

ecf.dubbo.server config

Property Name Description Type Default Value
ecf.dubbo.server.hostname   The hostname to be used to export the remote service via Dubbo network provider. NOTE: This is the hostname that will be set in the Dubbo NetworkConfig as described in the Dubbo configuration properties documentation. String   localhost'  
ecf.dubbo.server.port   The port to be used to export the remote service via Dubbo network provider. NOTE: This is the port that will be set in the Dubbo NetworkConfig as described in the Dubbo configuration properties documentation. NOTE: If set to 0, the server port used for exporting remote service will be selected by the transport (e.g. Netty) from set of available server ports. String   20000'   ecf.dubbo.server.applicationName   The Dubbo Application to be used to export the remote service via Dubbo network provider. . String   ecf-dubbo-rs-<UUID>' where <UUID> is a random UUID generated via UUID.randomUUID() at runtime. For example: ecf-dubbo-rs-8259877d-7307-483b-8fdc-1615d5bae2df  
ecf.dubbo.server.id   The complete id/uri to be used to export the remote service via Dubbo network provider. NOTE: If this value is set via remote service property, then it will override the values of ecf.dubbo.server.port, and ecf.dubbo.server.hostname and ecf.dubbo.server.applicationName. String   dubbo://localhost:2000/ecf-dubbo-rs-<UUID> with default applicationName as described above  


The ECF Apache Dubbo Remote Service Provider uses Dubbo's own properties configuration as described here

TBD

Back to the top