在Spring 3中,可以动态设置@ResponseStatus的原因吗?

在Spring 3中,可以动态设置@ResponseStatus的原因吗?,第1张

在Spring 3中,可以动态设置@ResponseStatus的原因吗?

您可以使用

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");}


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/4986807.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-11-14
下一篇 2022-11-14

发表评论

登录后才能评论

评论列表(0条)

保存