1

Jersey クライアントを使用してリモート Web サービスにアクセスしようとしています。リクエストを行う私のコードは次のとおりです。

Client client = Client.create();
WebResource resource = client.resource(request.getUrl());

Builder builder = resource.accept("application/json");
String response = builder.post(String.class, request.getPayload());

これを OSGi バンドルにバンドルし、Adobe CQ CMS にインストールしました。

CMS でリクエスト コードを実行しようとすると、次のスタック トレースが表示されます。

Caused by: java.lang.ExceptionInInitializerError
at com.sun.jersey.core.spi.factory.MessageBodyFactory.getMessageBodyWriterMediaTypes(MessageBodyFactory.java:444)
at com.sun.jersey.api.client.RequestWriter.getMediaType(RequestWriter.java:324)
at com.sun.jersey.api.client.RequestWriter.writeRequestEntity(RequestWriter.java:282)
at com.sun.jersey.client.urlconnection.URLConnectionClientHandler._invoke(URLConnectionClientHandler.java:204)
at com.sun.jersey.client.urlconnection.URLConnectionClientHandler.handle(URLConnectionClientHandler.java:147)
at com.sun.jersey.api.client.Client.handle(Client.java:648)
at com.sun.jersey.api.client.WebResource.handle(WebResource.java:680)
at com.sun.jersey.api.client.WebResource.access$200(WebResource.java:74)
at com.sun.jersey.api.client.WebResource$Builder.post(WebResource.java:568)
at com.myapp.auth.request.impl.HttpRequestSender.sendRequest(HttpRequestSender.java:44)
at com.myapp.auth.ws.clients.impl.AuthenticateClientImpl.authenticate(AuthenticateClientImpl.java:47)
at com.myapp.auth.Authenticator.authenticate(Authenticator.java:31)
at org.apache.jsp.apps.angry_002dnerds.components.page.base.content_jsp._jspService(content_jsp.java:155)
at org.apache.sling.scripting.jsp.jasper.runtime.HttpJspBase.service(HttpJspBase.java:70)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
at org.apache.sling.scripting.jsp.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:420)
... 126 more

原因: com.sun.jersey.core.header.MediaTypes.(MediaTypes.java:64) の javax.ws.rs.core.MediaType.valueOf(MediaType.java:119) での java.lang.NullPointerException ... 142以上

私が周りを見回したところ、他のプラットフォームでMediaTypeがNullPointerExceptionsをスローするという同様のエラーが発生したことがわかりました..

誰もこの問題を見たことがありますか?

4

1 に答える 1

-1

Jersey depsによるとjersey-json、依存関係/クラスパスにモジュールが必要です。

于 2012-05-23T10:34:45.253 に答える