浏览器 servlet PrintWriter 输出的自动提交表单在浏览器关闭的时候会继续吗

B/S架构下
System A向System B发送请求,System B 向System C发送请求,然后System C进行一系列处理操作,完成之后会通知System B(HttpServlet接口),System B接收到通知之后也会做一系列处理操作,最后会通过PrintWriter打印输出一个带有自动提交表单的html页面,这个自动提交表单的action url为System A的一个通知接口。
请问:假如在System B接收到System C发来的通知之后进行一系列处理操作的过程中,我将浏览器关闭,System B打印输出的自动提交表单还会继续提交吗?或者说System A还会接收到System B发来的通知吗?
// 表单提交
PrintWriter pw = null;
try {
pw = BillcenterWebUtil.returnPrintWriter(response);
pw.write(requestUrl);
} catch (Exception e) {
logger.error(e.getMessage(), e.fillInStackTrace());
} finally {
if (pw != null) {
pw.close();
}
}
return null;
}
return new ActionRedirect(requestUrl);

requestUrl是生成一个第三方的url
请问这样子是表单提交? 为什么?