There are two use cases:
1.response.getWriter().print("");
2.PrintWriter out = response.getWriter();
out.print("");
out.close();
Do I always need to close the Writer like showing in the second case? or can I do it as simple as the first one?