如何在 HttpServletRequest ? 中添加 http 协议标头值

发布于 2024-11-15 06:58:42 字数 101 浏览 2 评论 0原文

在调用 request.getHeader() 并获取标头值之前,如何在 HttpServletRequest 中的 Filter 处添加 http 协议标头值?

How do you add a http protocol header value in HttpServletRequest at a Filter,before call request.getHeader() and get the header value?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

海的爱人是光 2024-11-22 06:58:42

您可以在 HttpServletRequestWrapper 中找到挂钩。

[编辑以包含示例链接]

在这里您可以找到一个很好的例子

You can find the hooks in HttpServletRequestWrapper.

[Edited to include a link to an example]

Here you can find a fine example.

╭⌒浅淡时光〆 2024-11-22 06:58:42

HttpServletRequest 对象是只读的。您无法修改它们。但是您绝对可以通过使用装饰器模式来扩展它们的功能并在扩展类中添加可变性。看看下面的帖子:

http://wilddiary.com/adding-custom- headers-java-httpservletrequest/

HttpServletRequest objects are read-only. You cannot modify them. But you can definitely extend their functionality by employing a decorator pattern and add mutability in the extended class. Take a look at the following post:

http://wilddiary.com/adding-custom-headers-java-httpservletrequest/

ま昔日黯然 2024-11-22 06:58:42

试试这个:

MutableHttpServletRequest mutableRequest = new MutableHttpServletRequest(request); 
mutableRequest.putHeader("yourHeader", "yourHeaderValue");

其中 request 是 HttpServletRequest。

Try this:

MutableHttpServletRequest mutableRequest = new MutableHttpServletRequest(request); 
mutableRequest.putHeader("yourHeader", "yourHeaderValue");

where request is a HttpServletRequest.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文