Posts

Showing posts from January, 2018
Image
Spring Boot And Couch Base Demo In this example we will store the data in couchbase using input form restful webservie using spring boot. We will store the json data here i have created the bucket name demo and its contain the multiple document of order and here document id is refer to value of Key name Id. JSON Data Structure : {     "id": "201",     "order_id": "201",     "type": "order",     "customer_id": "24601",     "total_price": 255,     "lineitems": [         {             "item_id": 111,             "quantity": 3,             "base_price": 14,             "tax": 2,             "final_price": 15         },         {             "item_id": 222,     ...