我正在使用Spring Restful Web服务&请求正文包含请求标题,如下所示:
@RequestMapping(value = "/mykey",method = RequestMethod.POST,consumes="applicaton/json")
public ResponseEntity
我想传递一个名为“X-MyHeader”的可选请求标头.如何在Spring休息服务中指定此可选请求标头?
另外,如何在响应头中传递相同的值?
谢谢!
更新:我刚刚发现我可以在请求标头中设置required = false,因此解决了一个问题.现在,剩下的唯一问题是如何在响应中设置标头?
最佳答案
这个问题在这里得到解答:
In Spring MVC,how can I set the mime type header when using @ResponseBody
原文链接:https://www.f2er.com/spring/431782.htmlIn Spring MVC,how can I set the mime type header when using @ResponseBody
以下是代码示例:http://static.springsource.org/spring/docs/3.0.x/spring-framework-reference/html/mvc.html#mvc-ann-httpentity
@RequestMapping("/something")
public ResponseEntity