简体   繁体   English

RestEasy - 无法找到MessageBodyReader?

[英]RestEasy - Unable to find MessageBodyReader?

I've written a simple RestEasy client proxy to perform an iTunes search. 我编写了一个简单的RestEasy客户端代理来执行iTunes搜索。 It looks like this: 它看起来像这样:

@Path("/")
public interface AppleAppStoreLookupClient {

    /**
     * Attempts to lookup an apple app store item by its ID
     * 
     * @param id
     *            The item ID
     * @return The app details
     */
    @GET
    @Path("/lookup")
    @Produces(value = { "text/javascript" })
    public AppleAppDetailsResponse lookupByID(@QueryParam("id") String id);
}

My JSON model class is simple, as well. 我的JSON模型类也很简单。 In fact, for the first call all I want is the "resultCount" value, just to make sure connectivity works. 实际上,对于第一次调用我想要的只是“resultCount”值,只是为了确保连接正常工作。

@XmlRootElement
@XmlAccessorType(XmlAccessType.NONE)
public class AppleAppDetailsResponse implements Serializable {

    private static final long serialVersionUID = 8881587082097337598L;

    @XmlElement
    private int resultCount = -1;

   ...getters and setters...

}

However, when I run a simple test, I get the following Exception: 但是,当我运行一个简单的测试时,我得到以下异常:

org.jboss.resteasy.client.ClientResponseFailure: Unable to find a MessageBodyReader of content-type text/javascript;charset="utf-8" and type class net.odyssi.mms.appstore.apple.AppleAppDetailsResponse
    at org.jboss.resteasy.client.core.BaseClientResponse.createResponseFailure(BaseClientResponse.java:523)
    at org.jboss.resteasy.client.core.BaseClientResponse.createResponseFailure(BaseClientResponse.java:514)
    at org.jboss.resteasy.client.core.BaseClientResponse.readFrom(BaseClientResponse.java:415)
    at org.jboss.resteasy.client.core.BaseClientResponse.getEntity(BaseClientResponse.java:377)
    at org.jboss.resteasy.client.core.BaseClientResponse.getEntity(BaseClientResponse.java:350)
    at org.jboss.resteasy.client.core.extractors.BodyEntityExtractor.extractEntity(BodyEntityExtractor.java:62)
    at org.jboss.resteasy.client.core.ClientInvoker.invoke(ClientInvoker.java:126)
    at org.jboss.resteasy.client.core.ClientProxy.invoke(ClientProxy.java:88)
    at $Proxy21.lookupByID(Unknown Source)
    at net.odyssi.mms.appstore.apple.test.AppleAppStoreLookupClientTest.testLookupByID(AppleAppStoreLookupClientTest.java:50)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    at java.lang.reflect.Method.invoke(Method.java:601)
    at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:45)
    at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:15)
    at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:42)
    at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:20)
    at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:28)
    at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:263)
    at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:68)
    at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:47)
    at org.junit.runners.ParentRunner$3.run(ParentRunner.java:231)
    at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:60)
    at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:229)
    at org.junit.runners.ParentRunner.access$000(ParentRunner.java:50)
    at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:222)
    at org.junit.runners.ParentRunner.run(ParentRunner.java:300)
    at org.eclipse.jdt.internal.junit4.runner.JUnit4TestReference.run(JUnit4TestReference.java:50)
    at org.eclipse.jdt.internal.junit.runner.TestExecution.run(TestExecution.java:38)
    at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:467)
    at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:683)
    at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:390)
    at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:197)

I'm running RestEasy 2.3.6. 我正在运行RestEasy 2.3.6。 Any idea what could be causing such an error? 知道什么可能导致这样的错误?

Do you have a json provider on your classpath? 你的类路径上有一个json提供程序吗? If you are using maven, try adding this dependency: 如果您使用的是maven,请尝试添加此依赖项:

 <dependency>
    <groupId>org.jboss.resteasy</groupId>
    <artifactId>resteasy-jettison-provider</artifactId>
    <version>2.3.6.Final</version>
</dependency>

http://docs.jboss.org/resteasy/docs/2.3.6.Final/userguide/html_single/#JAXB_+_JSON_provider http://docs.jboss.org/resteasy/docs/2.3.6.Final/userguide/html_single/#JAXB_+_JSON_provider

EDIT: 编辑:

Normally, one would use the content type application/json and not text/javascript . 通常,人们会使用内容类型application/json而不是text/javascript I'm not sure why you are using text/javascript ? 我不确定你为什么使用text/javascript

Anyways, if your endpoint returns only text/javascript , you can always modify the Content-Type -header in an interceptor: 无论如何,如果你的端点只返回text/javascript ,你总是可以修改拦截器中的Content-Type -header:

ResteasyProviderFactory factory = new ResteasyProviderFactory();
RegisterBuiltin.register(factory);
factory.getClientExecutionInterceptorRegistry().register(
    new ClientExecutionInterceptor() {
        @Override
        public ClientResponse execute(ClientExecutionContext ctx) throws Exception {
            ClientResponse response = ctx.proceed();
            if("text/javascript".equals(response.getHeaders().getFirst(HttpHeaders.CONTENT_TYPE))){
                response.getHeaders().putSingle(HttpHeaders.CONTENT_TYPE, MediaType.APPLICATION_JSON);
            }
            return response;
        }
    });


ProxyFactory.create(Service.class, URI.create("http://url-to-your-sevice"), new ApacheHttpClient4Executor(), factory);

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 无法找到MessageBodyReader - unable to find a MessageBodyReader 如何解决 java.lang.RuntimeException: RESTEASY007545: Unable to find a MessageBodyReader for media type - How to solve java.lang.RuntimeException: RESTEASY007545: Unable to find a MessageBodyReader for media type RESTEASY003940:无法实例化 MessageBodyReader [RestEasy 4.5.0.Final] - RESTEASY003940: Unable to instantiate MessageBodyReader [RestEasy 4.5.0.Final] org.jboss.resteasy.client.ClientResponseFailure:无法找到内容类型为文本/纯文本且类型为类java.lang.String的MessageBodyReader - org.jboss.resteasy.client.ClientResponseFailure: Unable to find a MessageBodyReader of content-type text/plain and type class java.lang.String RESTEASY003145:找不到内容类型 application/json 和类型类 org.keycloak.representations.AccessTokenResponse 的 MessageBodyReader - RESTEASY003145: Unable to find a MessageBodyReader of content-type application/json and type class org.keycloak.representations.AccessTokenResponse Resteasy MessageBodyReader错误消息 - Resteasy MessageBodyReader error message 找不到内容类型为application / octet-stream的MessageBodyReader - Unable to find a MessageBodyReader of content-type application/octet-stream “无法找到 MessageBodyReader”错误,包含文件和 JSON 的多部分请求 - “Unable to find a MessageBodyReader” error with multipart request containing a file and JSON 无法实例化MessageBodyReader错误 - Unable to instantiate MessageBodyReader error 无法加载自定义MessageBodyReader - Unable to load custom MessageBodyReader
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM