私のコントローラーメソッドは次のようになります。
@RequestMapping(value = "/com/uData.htm", method = RequestMethod.GET)
public @ResponseBody String getData(HttpServletRequest request,
HttpServletResponse response, @RequestParam(value="sn", required=true) String sn,
@RequestParam(value="serv", required=true) String serv,
@RequestParam(value="date", required=false) String date) throws IOException{
try {
Srring data =...;
if(condition == false) {
throw new IOException("my exception message");
}
...
...
} catch (IOException ie) {
response.sendError(HttpServletResponse.SC_INTERNAL_SERVER_ERROR, ie.getMessage());
response.setStatus(HttpServletResponse.SC_INTERNAL_SERVER_ERROR);
response.getWriter().write(ie.getMessage());
response.flushBuffer();
}
return data;
}
そして、ここに私のjQuery ajaxがどのように見えるかがあります
$.ajax({
cache: false,
url: "/com/uData.htm",
dataType: 'json',
data: {"sn": sn, "serv": selServ},
success: function(dt){
result = dt;
},
error: function(jqXHR, textStatus, errorThrown) {
if(jqXHR.responseText !== '') {
alert(textStatus+": "+jqXHR.responseText);
} else {
alert(textStatus+": "+errorThrown);
}
}
});
返されるカスタム例外メッセージは、私の JSP で
alert(textStatus+": "+jqXHR.responseText);
カスタム例外メッセージ ("my exception message") を JSP に返すにはどうすればよいですか?