Dropwizard を使用すると、依存関係が見つからないというエラーが表示されます。
ERROR [2013-07-31 22:17:01,918] com.sun.jersey.spi.inject.Errors: The following errors and warnings have been detected with resource and/or provider classes:
SEVERE: Missing dependency for method public com.pronto.mpds.domain.MerchantProfileGroup com.pronto.mpds.service.MPDSResource.getMerchantProfiles(java.util.List,java.util.List) at parameter at index 0
SEVERE: Missing dependency for method public com.pronto.mpds.domain.MerchantProfileGroup com.pronto.mpds.service.MPDSResource.getMerchantProfiles(java.util.List,java.util.List) at parameter at index 1
SEVERE: Missing dependency for method public com.pronto.mpds.domain.MerchantCpcData com.pronto.mpds.service.MPDSResource.getMerchantCpcData(java.lang.String,com.google.common.base.Optional) at parameter at index 0
SEVERE: Missing dependency for method public com.pronto.mpds.domain.MerchantCpcData com.pronto.mpds.service.MPDSResource.getMerchantCpcData(java.lang.String,com.google.common.base.Optional) at parameter at index 1
私の Resource クラスは次のようになります。
@Path("merchants")
public class MPDSResource {
@GET
@Path("{merchantId}/profile")
@Produces(APPLICATION_JSON)
public MerchantProfile getMerchantProfile(@PathElem("merchantId") String merchantId) {
throw new UnsupportedOperationException("not yet implemented");
}
@GET
@Path("featured")
@Produces(APPLICATION_JSON)
public FeaturedMerchantGroup getFeaturedMerchants(@RequestParam(value = "browseId") String browseId) {
throw new UnsupportedOperationException("not yet implemented");
}
@GET
@Path("profile")
@Produces(APPLICATION_JSON)
public MerchantProfileGroup getMerchantProfiles(
@RequestParam(value = "merchantIds", delimiter = "|") List<String> merchantIds,
@RequestParam(value = "selectors", delimiter = "|") List<String> selectors) {
throw new UnsupportedOperationException("not yet implemented");
}
@GET
@Path("{merchantId}/cpc")
@Produces(APPLICATION_JSON)
public MerchantCpcData getMerchantCpcData(@PathElem("merchantId") String merchantId,
@RequestParam(value = "mexpCategoryIds", delimiter = "|") Optional<List<String>> mexpCategoryIds) {
throw new UnsupportedOperationException("not yet implemented");
}
}
4 つのメソッドがありますが、エラーは複数のパラメーターを受け取るメソッドでのみ発生しています。
ここに私のジャージの依存関係があります:
<dependency>
<groupId>com.sun.jersey</groupId>
<artifactId>jersey-server</artifactId>
<version>1.14</version>
</dependency>
<dependency>
<groupId>com.sun.jersey</groupId>
<artifactId>jersey-json</artifactId>
<version>1.14</version>
</dependency>
<dependency>
<groupId>com.sun.jersey</groupId>
<artifactId>jersey-client</artifactId>
<version>1.14</version>
</dependency>
<dependency>
<groupId>com.sun.jersey.contribs</groupId>
<artifactId>jersey-spring</artifactId>
<version>1.14</version>
<exclusions>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-aop</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-core</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-beans</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-web</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>com.sun.jersey</groupId>
<artifactId>jersey-core</artifactId>
<version>1.14</version>
</dependency>
Maven インポートで一貫した Jersey バージョンを使用していることを確認しました。上記の Resource クラスを含む Web モジュールには、カスタム PathElem および RequestParam クラスを含むパッケージへの Maven 依存関係が含まれていることを確認しました。他の可能性は考えられません。これを解決する方法を知っている人はいますか?