SpringBoot based JsonRPC demo
Demo consists of Server and Client
In Server or Client directory
mvn clean install
java -jar target/Server-1.0-SNAPSHOT.jar
java -jar target/Client-1.0-SNAPSHOT.jar
To check client via curl
curl -H "Content-Type:application/json" -d '{"id":"1","jsonrpc":"2.0","method":"hello","params":{"name":"Alex"}}' http://localhost:8024/demoService
curl -H "Content-Type:application/json" -d '{"id":"1","jsonrpc":"2.0","method":"getDate"}' http://localhost:8024/demoService