作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在 org.springframework.http.server.reactive.ServerHttpResponse
我们有以下方法:
boolean setStatusCode(@Nullable HttpStatus status);
这应该允许我们设置响应的 http 状态代码。问题是我们不能使用简单的 int
值,我们必须传递无法解析非标准 Http 状态代码的 HttpStatus(在我的例子中为 498)
关于如何设置状态有什么建议吗?
最佳答案
创建issue后在 Github 上。我意识到我们可以将接口(interface)向下转换为 AbstractServerHttpResponse ,以便访问将 Integer 作为参数的 setStatusCodeValue 方法,从而使我们能够设置非标准状态。
此外,Spring 团队可能会考虑在未来版本的 ServerHttpResponse
接口(interface)中公开此方法。
关于java - 如何在Spring React的ServerHttpResponse中设置非标准的HttpStatus?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59789015/
我是一名优秀的程序员,十分优秀!