After an HTTP POST (generated by an application, not by users) I want to send an email. I got the email sending procedure right but I'm not sure about how Java webapp servers are working.
I'm particularly concerned by timeouts and I want to know if I'm somehow blocking an important thread.
If I do something like the following:
@Override
public void doPost(
final HttpServletRequest req,
final HttpServletResponse resp
) throws IOException, ServletException {
final PrintWriter pw = resp.getWriter();
pw.write( ... );
pw.flush();
pw.close();
// Here I'm sending an email, this can potentially
// block until the email send procedure times out
// (the timeout is set to 5 seconds)
sendEmail(...);
}
And if the email server is down, the thread will block until my sendEmail times out (timeout which I set to a few seconds).
Which thread am I then blocking? I mean, obviously I realize I'm blocking the thread that is processing this POST but is this an issue? What is this thread supposed to do next?
I read that I shouldn't create new threads from a Java webapp server, so I take it I shouldn't do the following right?
Thread t = new Thread( new Runnable() {
public void run() {
sendEmail();
}
});
t.start();
Note that my question ain't specific to email sending: I want to understand what has to be taken care of in a Java webapp everytime you plan to do a potentially blocking/long operation after a GET or a POST.