Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Websphere Plugin 不会向客户端返回 http 自定义错误代码 422,而是显示 500 错误消息。这是在 WAS 8.5.5.9,IBM Http Server 上。
但是,您要设置 422 状态,您需要确保状态代码后面有一个单词。在我的测试中,例如,如果您使用 HTTPServletResponse#setStatus 和未知状态代码,WAS 至少会添加“未定义”一词。
最安全的方法是使用 HTTPServletResponse#sendError,它需要状态码和原因字符串。