Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "Dubbo Service Properties"

Line 15: Line 15:
 
| '''ecf.dubbo.server.port'''  
 
| '''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 [https://dubbo.apache.org/en-us/docs/user/configuration/properties.html 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.
 
| 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 [https://dubbo.apache.org/en-us/docs/user/configuration/properties.html 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  
+
| Integer  
 
| '''20000'''  
 
| '''20000'''  
 
|-
 
|-

Revision as of 16:40, 19 October 2019

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. Integer   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  

Excepting the above, the Apache Dubbo configuration can be set as described here

Back to the top