Jersey 通常使用 HK2 依赖注入,但我想将 Jersey 与 Dagger 2 一起使用。Dagger 和 HK2 都实现了 JSR 330,我已经将其作为证据表明这应该是可能的,无需太多努力。我找到了让 Jersey 与 CDI(例如 Weld)、Spring DI 和 Guice 一起工作的方法,但我在 Dagger 上找不到任何东西。
提供一些上下文:我在 SE 环境中运行 Grizzly–Jersey 服务器,而不是在 EE 容器中。我的 Maven 项目有com.google.dagger:dagger
和org.glassfish.jersey.containers:jersey-container-grizzly2-http
作为依赖项,但没有 org.glassfish.jersey.inject:jersey-hk2
,因为我想用 Dagger 替换 HK2。
资源类如下所示:
@Path("/example")
public final class ExampleResource {
private final Dependency dependency;
@Inject
public ExampleResource(final Dependency dependency) {
this.dependency = Objects.requireNonNull(dependency);
}
@GET
@Produces(MediaType.APPLICATION_JSON)
public Example getExample() {
return this.dependency.giveExample();
}
}
Dagger 组件可以定义如下:
@Component
public interface Application {
public ExampleResource exampleEndpoint();
public XyzResource xyzEndpoint();
// etc.
}
因此主要方法看起来类似于:
public final class Main {
public static void main(final String[] args) {
final Application application = DaggerApplication.create();
final URI baseUri = UriBuilder.fromUri("http://0.0.0.0/").port(80).build();
final ResourceConfig resourceConfig = new ResourceConfig();
// how to initialize `resourceConfig` using `application`?
final HttpServer httpServer = GrizzlyHttpServerFactory
.createHttpServer(baseUri, resourceConfig, false);
try {
httpServer.start();
} catch (final IOException ex) {
...
}
}
}
立即运行应用程序会导致异常:IllegalStateException: InjectionManagerFactory not found.
似乎需要该工厂的 Dagger 实现。
我的问题是:如何将 Dagger 与 Jersey 集成?