I'm creating a simple Servlet to answer a form submition. This servlet receive POST request and should response Application/JSON datas. This is working well.
I want now to add errors managment to my servlet: If the servlet receive bad request parameters, I want it to answer the client a 400 — "Bad Request" response with a simple {"error":"ERROR MESSAGE"}
JSON response.
I'm using the HttpServletResponse#sendError(int,String)
to correctly send the error but the ContentType
of the response is always set to text/html
, even though I used HttpServletResponse#setContentType("application/json")
before.
Is this the good way to send error using Servets ? How can I force the ContentType
of the response to application/json
?
Sample code of the doPost() method of my test Servlet :
public void doPost(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
response.setContentType("application/json;charset=UTF-8");
PrintWriter out = response.getWriter();
out.print("{\"error\":1}");
response.sendError(HttpServletResponse.SC_BAD_REQUEST);
}