gpt4 book ai didi

jersey - 如何在灰熊上使用 jersey 2.0 guice

转载 作者:行者123 更新时间:2023-12-04 14:59:56 24 4
gpt4 key购买 nike

我想在 Grizzly 上使用 Guice + Jersey 2.0。根据这个How to use guice-servlet with Jersey 2.0?讨论 目前 Jersey2 没有直接的 Guice 集成,但可以使用 HK2 作为桥梁来实现。我还检查了 Github 中的示例项目 https://github.com/piersy/jersey2-guice-example-with-test .该项目是使用 Jetty 实现的。

但我的问题是在 Grizzly 中实现它。在 Jetty 上它是这样使用的

  @Inject
public MyApplication(ServiceLocator serviceLocator) {
// Set package to look for resources in
packages("example.jersey");

System.out.println("Registering injectables...");

GuiceBridge.getGuiceBridge().initializeGuiceBridge(serviceLocator);

GuiceIntoHK2Bridge guiceBridge = serviceLocator.getService(GuiceIntoHK2Bridge.class);
guiceBridge.bridgeGuiceInjector(Main.injector);

}

我在 grizzly 上的问题是,如何获取这个 serviceLocator 对象?

谢谢你。

最佳答案

我在这里创建了示例
https://github.com/oleksiys/samples/tree/master/jersey2-guice-example-with-test

Grizzly 初始化代码如下所示:

final URI uri = UriBuilder.fromUri("http://127.0.0.1/")
.port(8080).build();

// Create HttpServer
final HttpServer serverLocal = GrizzlyHttpServerFactory.createHttpServer(uri, false);

// Create Web application context
final WebappContext context = new WebappContext("Guice Webapp sample", "");

context.addListener(example.jersey.Main.class);

// Initialize and register Jersey ServletContainer
final ServletRegistration servletRegistration =
context.addServlet("ServletContainer", ServletContainer.class);
servletRegistration.addMapping("/*");
servletRegistration.setInitParameter("javax.ws.rs.Application",
"example.jersey.MyApplication");

// Initialize and register GuiceFilter
final FilterRegistration registration =
context.addFilter("GuiceFilter", GuiceFilter.class);
registration.addMappingForUrlPatterns(EnumSet.allOf(DispatcherType.class), "/*");

context.deploy(serverLocal);

serverLocal.start();

关于jersey - 如何在灰熊上使用 jersey 2.0 guice,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18080911/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com