Currently my Servlet receives data from a form on a web page via a POST request.
I need to perform a variety of actions with the data received but the client doesn't need to wait for this processing to finish. I am not sending anything back.
The way it works now is the client continually waits until an HTTP response is sent but that doesn't happen until doPost() has completed. But I use doPost() to store the data & trigger actions on that data.
I could simply store the data with doPost() but then how do I trigger an action on that data outside of doPost()?