模型对象上的 Spring RequestHeader 注释?
我可以将 @RequestHeader 放在模型对象属性上吗?即
class MyModel {
String ua;
public void setUa(@RequestHeader("User-Agent") String ua) {
this.ua = ua;
}
}
这适用于@RequestParam,但当我使用@RequestHeader时似乎没有效果。我错过了什么吗?而且,如果不支持,有什么原因吗?
Can I put @RequestHeader on a model object property? I.e.
class MyModel {
String ua;
public void setUa(@RequestHeader("User-Agent") String ua) {
this.ua = ua;
}
}
This works with @RequestParam, but seems to have no effect when I use @RequestHeader. Am I missing something? And, if this isn't supported, is there some reason why?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您只能在控制器方法中执行此操作。不是模型对象。检查 文档
You can do this only in controller methods. Not model objects. Check the documentation