With the rapid iteration of the Internet, more and more companies choose quick script frameworks such as nodejs, Django and rails to develop web-side applications.
Java is the most suitable for back-end service, which resulting in a lot of cross-language invocation requirements.
While HTTP and JSON are naturally suitable as cross-language standards, all languages have mature class libraries for them.
Although Dubbo's asynchronous long connection protocol is efficient, in scripting languages this loss of efficiency is not important.
Dubbo has made an attempt on the RESTful interface, but there is some difference between the REST architecture and the original RPC architecture of Dubbo.
The difference is that the REST architecture needs the definition of resources and we should operate the resources using the basic HTTP methods —— GET, POST, PUT, DELETE.
Dubbo needs to redefine the properties of the interface, which is a big burden on the original interface migration of Dubbo.
In contrast, RESTful is more appropriate for calls between Internet systems, and RPC is more appropriate for calls within a system, so we used JsonRPC which is more consistent with the Dubbo concept.
<dependency>
<groupId>com.qianmi</groupId>
<artifactId>dubbo-rpc-jsonrpc</artifactId>
<version>1.0.1</version>
</dependency>
Define jsonrpc protocol:
<dubbo:protocol name="jsonrpc" port="8080" server="jetty" />
Set default protocol:
<dubbo:provider protocol="jsonrpc" />
Set service protocol:
<dubbo:service protocol="jsonrpc" />
Multi port:
<dubbo:protocol id="jsonrpc1" name="jsonrpc" port="8080" />
<dubbo:protocol id="jsonrpc2" name="jsonrpc" port="8081" />
Multi protocol:
<dubbo:protocol name="dubbo" port="20880" />
<dubbo:protocol name="jsonrpc" port="8080" />
<dubbo:service id="helloService" interface="com.alibaba.hello.api.HelloService" version="1.0.0" protocol="dubbo,jsonrpc" />
Jetty Server: (default)
<dubbo:protocol ... server="jetty" />
or the latest version of jetty:
<dubbo:protocol ... server="jetty9" />
Maven:
<dependency>
<groupId>org.mortbay.jetty</groupId>
<artifactId>jetty</artifactId>
<version>6.1.26</version>
</dependency>
Servlet Bridge Server: (recommend)
<dubbo:protocol ... server="servlet" />
web.xml:
<servlet>
<servlet-name>dubbo</servlet-name>
<servlet-class>com.alibaba.dubbo.remoting.http.servlet.DispatcherServlet</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>dubbo</servlet-name>
<url-pattern>/*</url-pattern>
</servlet-mapping>
Be careful if you are using a servlet to send requests:
The protocol port <dubbo:protocol port="8080" />
must be the same as the port of the servlet container.
The protocol context path <dubbo:protocol contextpath="foo" />
must be the same as the servlet application context path.
CORS(Cross-origin resource sharing):
<dubbo:protocol name="jsonrpc" ... />
<dubbo:parameter key="cors" value="true" />
</dubbo:protocol>
JAVA API
public interface PhoneNoCheckProvider {
/**
* check if the number is limited
* @param operators operators
* @param no number
* @param userid the user identity
* */
boolean isPhoneNoLimit(Operators operators, String no, String userid);
}
Client
curl -i -H 'content-type: application/json' -X POST -d '{"jsonrpc": "2.0", "method": "isPhoneNoLimit", "params": [ "MOBILE", "130000", "A001"],
"id": 1 }' 'http://127.0.0.1:18080/com.qianmi.api.PhoneNoCheckProvider'
Python Client Example
import httplib
import json
__author__ = 'caozupeng'
def raw_client(app_params):
headers = {"Content-type": "application/json-rpc",
"Accept": "text/json"}
h1 = httplib.HTTPConnection('172.19.32.135', port=18080)
h1.request("POST", '/com.qianmi.ofdc.api.phone.PhoneNoCheckProvider', json.dumps(app_params), headers)
response = h1.getresponse()
return response.read()
if __name__ == '__main__':
app_params = {
"jsonrpc": "2.0",
"method": "isPhoneNoLimit",
"params": ["MOBILE", "130000", "A001"],
"id": 1
}
print json.loads(raw_client(app_params), encoding='utf-8')
https://github.com/QianmiOpen/dubbo-client-py
https://github.com/QianmiOpen/dubbo-node-client
https://github.com/JoeCao/dubbo_jsonrpc_example
run with docker
You need to enable CORS support as described above, see https://github.com/datagraph/jquery-jsonrpc