基于标题值过滤请求的泽西注释

时间:2014-11-18 12:58:10

标签: java spring-mvc jersey jersey-client jersey-1.0

在球衣API中是否有任何注释可用于实现基于标头的请求过滤 值?在春天也可以实现同样的目标

@RequestMapping(value =“/ test”,method = RequestMethod.POST,headers = {“version = v1.1”})

1 个答案:

答案 0 :(得分:0)

使用注释无法做到这一点。但是,您可以访问HttpServletRequest,例如

public Response foo( @Context HttpServletRequest request ) {
    if( request.getHeader( "version" ).equals( "v1.1" ) }
       // ...
    }
}