您可以使用
HttpServletResponse的
sendError功能来实现。
这是一个如何使用它的示例:
@RequestMapping(value = "some/url", method = RequestMethod.POST)public void doAction(final HttpServletResponse response) throws IOException { response.sendError(HttpStatus.BAD_REQUEST.value(), "custom error message");}
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)