7

私の人生では、Jersey with hk2 を取得して @Service アノテーション付きクラスを自動的に検出し、それらを注入することはできません。スタック オーバーフロー、ジャージー、hk2 のドキュメントに関するすべてのアドバイスに従おうとしましたが、まだ運がありません。シンプルなエコー サービスをジャージー リソースに挿入しようとしています。スケルトンは、Jersey の単純な webapp maven アーキタイプから生成されます。これを拡張しようとしました。これは私がこれまでに持っているものです:

pom.xml

<build>
  <finalName>sandbox</finalName>
  <plugins>
    <plugin>
      <groupId>org.glassfish.hk2</groupId>
      <artifactId>hk2-inhabitant-generator</artifactId>
      <version>2.3.0</version>
      <executions>
        <execution>
          <configuration>
            <verbose>true</verbose>
          </configuration>
          <goals>
            <goal>generate-inhabitants</goal>
          </goals>
        </execution>
      </executions>
    </plugin>
  </plugins>
</build>
...
<dependencyManagement>
  <dependencies>
    <dependency>
      <groupId>org.glassfish.jersey</groupId>
      <artifactId>jersey-bom</artifactId>
      <version>${jersey.version}</version>
      <type>pom</type>
      <scope>import</scope>
    </dependency>
  </dependencies>
</dependencyManagement>

<dependencies>
  <dependency>
    <groupId>org.glassfish.jersey.containers</groupId>
    <artifactId>jersey-container-servlet-core</artifactId>
  </dependency>
  <dependency>
    <groupId>org.glassfish.hk2</groupId>
    <artifactId>hk2</artifactId>
    <version>2.3.0</version>
  </dependency>
</dependencies>

web.xml

<servlet>
    <servlet-name>Jersey Web Application</servlet-name>
    <servlet-class>org.glassfish.jersey.servlet.ServletContainer</servlet-class>
    <init-param>
        <param-name>jersey.config.server.provider.packages</param-name>
        <param-value>my.package.jerseytest</param-value>
    </init-param>
    <init-param>
        <param-name>javax.ws.rs.Application</param-name>
        <param-value>my.package.jerseytest.application.Application</param-value>
    </init-param>    

    <load-on-startup>1</load-on-startup>
</servlet>

my.package.jerseytest.application.Application

public class Application extends ResourceConfig {
    public Application() {
        ServiceLocator locator = ServiceLocatorUtilities.createAndPopulateServiceLocator();
    }
}

my.package.jerseytest.service.EchoService

@Service
public class EchoService {
    public String generateResponse(String echo) {
        return echo;
    }
}

my.package.jerseytest.resource.MyResource

@Path("myresource")
public class MyResource {

    @Inject
    EchoService echoService;

    @GET
    @Produces(MediaType.TEXT_PLAIN)
    public String getIt() {
        return echoService.generateResponse("Got it!");
    }
}

私は、抑制剤ジェネレーターが実際に実行され、その出力を生成することを確認しましたが、Tomcat サーバーの GETtinghttp://localhost:8080/sandbox/webapi/myresourceを実行すると、

SEVERE: Servlet.service() for servlet [Jersey Web Application] in context with path [/sandbox] threw exception [A MultiException has 3 exceptions.  They are:
1. org.glassfish.hk2.api.UnsatisfiedDependencyException: There was no object available for injection at SystemInjecteeImpl(requiredType=EchoService,parent=MyResource,qualifiers={},position=-1,optional=false,self=false,unqualified=null,932014249)
2. java.lang.IllegalArgumentException: While attempting to resolve the dependencies of my.package.jerseytest.resource.MyResource errors were found
3. java.lang.IllegalStateException: Unable to perform operation: resolve on my.package.jerseytest.resource.MyResource
] with root cause
org.glassfish.hk2.api.UnsatisfiedDependencyException: There was no object available for injection at SystemInjecteeImpl(requiredType=EchoService,parent=MyResource,qualifiers={},position=-1,optional=false,self=false,unqualified=null,932014249)

私が見逃しているアイデアはありますか?助けていただければ幸いです:(

注意!私は知っている

しかし、彼らは私を助けませんでした...

4

5 に答える 5

2

これら 2 つの質問から得た洞察を組み合わせています。

まず、ビルド チェーンでHK2 メタデータ ジェネレーター(または Inhabitant Generator) を使用します (既に行っているように)。これにより、ソースがスキャンされ、META-INF/hk2-locator/default.

次に、ServiceLocatorメタデータからのサービスが取り込まれた新しい を作成します。

ServiceLocator locator = ServiceLocatorUtilities.createAndPopulateServiceLocator();

渡しますGrizzly@peeskiletを引用:

Jersey には独自の ServiceLocator があり、それへの参照を取得しようとするのは簡単ではありません。Jersey に ServiceLocator を与えることもできますが、Jersey は最終的に独自のロケーターを作成し、ロケーターを設定します。

ResourceConfig config = new MyApplicationConfig();
HttpServer server = GrizzlyHttpServerFactory.createHttpServer(
    URI.create(BASE_URI),
    config, 
    serviceLocator
);
于 2015-08-13T11:43:17.747 に答える
1

AbstractBinder を拡張するクラスを使用してインスタンス化し、アプリケーションに登録することで、このような問題を解決しました。

resourceConfig.register(new DependencyBinder());

また、

/**
 * dependency injection bindings.
 * Jersey requires that service implementations are bound to their contracts this way.
 */
public final class DependencyBinder extends AbstractBinder {

    @Override
    protected final void configure() {
        bind(StatusServiceImpl.class).to(StatusService.class);
    }
}
于 2017-01-04T09:49:44.257 に答える
0

追加してみる@Stateless

@Path("myresource")
@Stateless
public class MyResource {
    @Inject
    EchoService echoService;
...
}
于 2015-01-14T11:14:21.520 に答える