球衣 2:如何创建自定义 HTTP 参数绑定
我正在尝试为我的宁静服务创建自定义 http 参数绑定。请参阅下面的示例。
@POST
@Path("/user/{userId}/orders")
@Produces(MediaType.APPLICATION_JSON)
@Consumes(MediaType.APPLICATION_JSON)
public MyResult foo(@PathParam("userId") String someString, @UserAuthHeaderParam String authString){
}
您可以看到函数签名中有一个 UserAuthHeaderParam 注释。我想做的是有一个自定义的http参数绑定,而不是标准的javax.ws.rs.*Param。
我尝试实现org.glassfish.hk2.api.InjectionResolver,它基本上从http header中提取值:
public class ProtoInjectionResolver implements InjectionResolver<UserAuthHeaderParam>{
...
@Override
public Object resolve(Injectee injectee, ServiceHandle< ? > root)
{
return "Hello World";
}
...
}
当我调用 restful 服务时,服务器会得到以下异常。它指示框架无法解析函数签名中的参数:
org.glassfish.hk2.api.UnsatisfiedDependencyException: There was no object available for injection at Injectee(requiredType=String,parent=MyResource,qualifiers={}),position=0,optional=false,self=false,unqualified=null,2136594195),
java.lang.IllegalArgumentException: While attempting to resolve the dependencies of rs.server.MyResource errors were found
请帮忙。任何建议都将不胜感激。我确实在谷歌上做了很多搜索,但未能使其工作。球衣 2.*.如何替换 InjectableProvider 和 AbstractHttpContextInjectable of Jersey 1.* 可能是类似的问题。
- 更新:我使用AbstractBinder将我的解析器绑定到UserAuthHeaderParam:
public class MyApplication extends ResourceConfig
{
public MyApplication()
{
register(new AbstractBinder()
{
@Override
protected void configure()
{
// bindFactory(UrlStringFactory.class).to(String.class);
bind(UrlStringInjectResolver.class).to(new TypeLiteral<InjectionResolver<UrlInject>>()
{
}).in(Singleton.class);
}
});
packages("rs");
}
}
谢谢!