I went through a lot of StackOverflow answers and googled a lot but still could not find why my post request is not working.
This is my jsp:
You are using a POST request and your data is sent in the request body - not as parameter. You need to read the content using request.getReader().
POST
request.getReader()
// example using the javax.json.stream package JsonParser parser = Json.createParserFactory().createParser(request.getReader());