JSON RPC is a remote procedure call (RPC) approach (specified here) where the exchanged data structures are encoded in the JavaScript Object Notation (JSON). The data is exchanged via either HTTP or TCP.
JSON RCPs are an alternative to web services (examples), but are more light-weight (as the data structures smaller and simpler than SOAP/XML, examples for XML processing).
If we compare JSON RPC implemented with briandilley's jsonrpc4j framework to web services implemented with Axis2 and Java RMI (examples), then we find that
- It has many positive features of web services (which Java RMI lacks), namely is human-readable and can be transported over HTTP.
- The implementation is more light-weight: The protocol data units are smaller, the codebase seems to be smaller.
- No code needs to be generated and we can specify services as interfaces that we can use on both the client and server side - exactly as we do in Java RMI.
- JSON RPC services can either be deployed into a servlet container or compiled into a fat jar, which is quite nice.
So JSON RPCs are quite a nice technology.
The complex number calculator JSON RPC server offers methods to add, subtract, multiply, and divide complex numbers. This example is very similar to the Complex Number Calculator Web Service example server.
We introduce a new data type for representing a complex number in form of a JavaBean.
You need to compile (via Maven) and deploy to a servlet container.
The example client of the calculator JSON RPC introduced above creates two complex numbers 3+11i
and 5+7i
, multiplies then with each other, and prints the result. The multiplication is, of course, done by the web service. This example is very similar to the Complex Number Calculator Web Service example client.
The compiled jar archive is a stand-alone executable which you can run via java -jar calculatorJSONClient-full.jar
.
The warehouse RPC service example shows how we can construct a stand-alone JSON RPC service managing the number of certain stocks in a warehouse. It basically maintains a HashMap
storing the number of available items of a given type. This example is very similar to the Warehouse Web Service example server.
The RPC server offers a method for getting the number of items of a given type and one method for changing it. The Warehouse class implementing service interface itself is a plain Java object without any annotation or fancy stuff.
You need to compile this example with Maven) to build a stand-alone jar
archive. This archive does not need to be deployed anywhere, since it already contains the (Jetty) servlet container. You will obtain the fat jar
file warehouseJSONServer-full.jar
which you can run as java -jar warehouseJSONServer-full.jar
from the command line.
The example client of the warehouse JSON RPC service introduced above: It checks the warehouse for the number of "cars" and "cats", changes these numbers, and checks back the results. The client is compiled into a fat jar named warehouseJSONClient-full.jar
containing all the required libraries. You can directly execute it via java -jar warehouseJSONClient-full.jar
from the command line.
If you import the projects from this folder in Eclipse, it may first show you a lot of errors. (I recommend using Eclipse Mars or later.) This is a Maven project, so you should "update" it first in Eclipse by
- Make sure that you can see the
package view
on the left-hand side of the Eclipse window. - Right-click on the project (e.g.,
calculatorJSONClient
) in thepackage view
. - In the opening pop-up menu, left-click on
Maven
. - In the opening sub-menu, left-click on
Update Project...
. - In the opening window...
- Make sure the project (e.g.,
calculatorJSONClient
) is selected. - Make sure that
Update project configuration from pom.xml
is selected. - You can also select
Clean projects
. - Click
OK
. - Now the structure of the project in the
package view
should slightly change, the project will be re-compiled, and the errors should disappear.
In this example set, we have three kinds of projects: deployable RPC servers (which need to be deployed into a servlet container), stand-alone servers (which can be packaged into executable jar
s), and clients.
Now you can build the deployable server projects, i.e., generate a war
files that you can deploy in a servlet container. For building this war
, take the following steps:
- Make sure that you can see the
package view
on the left-hand side of the Eclipse window. - Right-click on the project (e.g.,
calculatorJSONServer
) in thepackage view
. - In the opening pop-up menu, choose
Run As
. - In the opening sub-menu choose
Run Configurations...
. - In the opening window, choose
Maven Build
- In the new window
Run Configurations
/Create, manage, and run configurations
, chooseMaven Build
in the small white pane on the left side. - Click
New launch configuration
(the first symbol from the left on top of the small white pane). - Write a useful name for this configuration in the
Name
field. You can use this configuration again later. - In the tab
Main
enter theBase directory
of the project, this is the folder calledcalculatorJSONServer
containing the Eclipse/Maven project. - Under
Goals
, enterclean compile war:war
. This will build awar
archive. - Click
Apply
- Click
Run
- The build will start, you will see its status output in the console window.
- The folder
target
will contain awar
file, e.g.,calculatorJSONServer.war
after the build. This is the deployable archive with our application. - After building the
war
archive, you can now deploy it.
The stand-alone server projects, such as the Warehouse Server, are built into a single jar
archive containing not just the servlet but also the servlet container. These archives do not need to be deployed and can directly be executed from the command line using java -jar ...
. If you want to, e.g., build the warehouse/server
example, you would take the following steps:
- Make sure that you can see the
package view
on the left-hand side of the Eclipse window. - Right-click on the project (
warehouseJSONServer
) in thepackage view
. - In the opening pop-up menu, choose
Run As
. - In the opening sub-menu choose
Run Configurations...
. - In the opening window, choose
Maven Build
- In the new window
Run Configurations
/Create, manage, and run configurations
, chooseMaven Build
in the small white pane on the left side. - Click
New launch configuration
(the first symbol from the left on top of the small white pane). - Write a useful name for this configuration in the
Name
field. You can use this configuration again later. - In the tab
Main
enter theBase directory
of the project, this is the folder calledjsonRPC/warehouse/server
containing the Eclipse/Maven project. - Under
Goals
, enterclean compile package
. This will build ajar
archive. - Click
Apply
- Click
Run
- The build will start, you will see its status output in the console window.
- The folder
target
will contain the fileswarehouseJSONServer.jar
andwarehouseJSONServer-full.jar
after the build. The first one requires several libraries in the classpath, the latter one is stand-alone, the one we are after.
If you are in the target
folder with your command line/terminal, you can now run the client which uses the web service by doing
java -jar warehouseJSONServer-full.jar
This will start up the servlet containing and the RPC servlet as well.
Now you can build the client projects, i.e., generate the normal jar
which you can directly execute via java -jar ...
. If you want to, e.g., build the calculator/client
example, you would take the following steps:
- Make sure that you can see the
package view
on the left-hand side of the Eclipse window. - Right-click on the project (
calculatorJSONClient
) in thepackage view
. - In the opening pop-up menu, choose
Run As
. - In the opening sub-menu choose
Run Configurations...
. - In the opening window, choose
Maven Build
- In the new window
Run Configurations
/Create, manage, and run configurations
, chooseMaven Build
in the small white pane on the left side. - Click
New launch configuration
(the first symbol from the left on top of the small white pane). - Write a useful name for this configuration in the
Name
field. You can use this configuration again later. - In the tab
Main
enter theBase directory
of the project, this is the folder calledjsonRPC/calculator/client
containing the Eclipse/Maven project. - Under
Goals
, enterclean compile package
. This will build ajar
archive. - Click
Apply
- Click
Run
- The build will start, you will see its status output in the console window.
- The folder
target
will contain the filescalculatorJSONClient.jar
andcalculatorJSONClient-full.jar
after the build. The first one requires several libraries in the classpath, the latter one is stand-alone, the one we are after.
If you are in the target
folder with your command line/terminal, you can now run the client which uses the web service by doing
java -jar calculatorJSONClient-full.jar
Of course, this will work only if the corresponding JSON RPC service is actually running...
Under Linux, you can also simply run make_linux.sh
in this project's folder to build the examples without Eclipse, given that you have Maven installed. This will work for any of the examples in this folder.
Only the deployable server examples need to be deployed.
GlassFish is a reference implementation of a Java EE 7 application server.
The following steps are for Linux, but under Windows it will be pretty much the same.
- Go to the GlassFish website https://glassfish.java.net/.
- Select download.
- Download the Java EE 7 Web Profile, at the time of this writing, this is GlassFish 4.1.1
- Unpack the downloaded archive into a folder of your liking (let's call this folder
F
). - Open a terminal console and go (
cd
) into folderF
. - In the folder
F
(where you unpackaged the archive), go to sub-folderglassfish4/bin/
, i.e., toF/glassfish4/bin/
. - Type
./asadmin start-domain
. (Under Windows, typeasadmin start-domain
without the leading./
.) The server will now start. - Under Windows, a window may pop up asking you for allowing the program internet access permission, which you should OK.
- Open your web browser and visit its configuration page at
http://localhost:4848
.
- Find the
war
file, e.g.,calculatorJSONServer.war
in the foldertarget
of this example project. - Copy it into the folder
F/glassfish4/glassfish/domains/domain1
. - In your web browser, visit
http://localhost:4848
. - Click
Applications
in the menu pane on the right. - It should list
calculatorJSONServer
. If you click this menu point, you get a list of the installed servlets