Java Server , processing Json files [closed]

2019-05-23 10:36发布

问题:

I have a mobile application that makes http post requests and sends a json file.

I would like to create a server in java that the only thing it does is get this json file and store it in my database. The problem is that i never wrote any server side code and have no clue how to do that.

How can i create a java server that all it does is wait for a json file to arrive and then process it (like storing it to my database etc..)

Bill