CXF JAX-RS客户端空指针异常

时间:2011-06-09 18:17:48

标签: java web-services cxf

我正在尝试使用找到here的Apache CXF JAX-RS客户端API代码。但是,当我运行客户端时,它会抛出这个:

Exception in thread "main" java.lang.NullPointerException
    at java.util.HashMap.<init>(HashMap.java:223)
    at org.restlet.ext.jaxrs.internal.core.ResponseBuilderImpl.clone(ResponseBuilderImpl.java:126)
    at org.restlet.ext.jaxrs.internal.core.ResponseBuilderImpl.clone(ResponseBuilderImpl.java:62)
    at org.apache.cxf.jaxrs.client.AbstractClient.setResponseBuilder(AbstractClient.java:374)
    at org.apache.cxf.jaxrs.client.ClientProxyImpl.handleResponse(ClientProxyImpl.java:451)
    at org.apache.cxf.jaxrs.client.ClientProxyImpl.doChainedInvocation(ClientProxyImpl.java:445)
    at org.apache.cxf.jaxrs.client.ClientProxyImpl.invoke(ClientProxyImpl.java:177)
    at $Proxy12.foo(Unknown Source)
    at com.paml.JaxTestClient.main(JaxTestClient.java:20)

这是我的客户:

public class JaxTestClient {

    public static void main( String[] args ) {
        // Works with Restlet API - but paths are not mapped automatically
        // JaxExampleEcho jaxExampleEcho = ClientResource.create( "http://localhost:8111/", JaxExampleEcho.class );

        JaxExampleEcho jaxExampleEcho = JAXRSClientFactory.create( "http://localhost:8111/", JaxExampleEcho.class );
        System.out.println( jaxExampleEcho.foo() );
        System.out.println( jaxExampleEcho.bar() );
        System.out.println( jaxExampleEcho.baz() );
    }
}

这是界面:

@Path( "/" )
public interface JaxExampleEcho {

    @GET
    @Path( "foo" )
    @Produces( "text/plain" )
    String foo();

    @GET
    @Path( "bar" )
    @Produces( "text/plain" )
    String bar();

    @GET
    @Path( "baz" )
    @Produces( "text/plain" )
    String baz();

}

当我在浏览器中使用正确的URL运行它时它工作正常,事实上我在服务器端看到了正确的请求:

Jun 9, 2011 11:06:03 AM org.restlet.engine.log.LogFilter afterHandle
INFO: 2011-06-09    11:06:03    127.0.0.1   -   -   8111    GET /foo    -   200 3   0   1   http://localhost:8111   Apache CXF 2.4.0    -

我对这可能导致什么感到困惑。我想也许我错过了一个依赖,所以我回去检查了一下并添加了几个。我想也许我在文档中遗漏了一些东西,但我没有看到任何东西。

我错过了一些明显的东西吗?有谁知道如何使这项工作?

感谢。

1 个答案:

答案 0 :(得分:1)

问题不在于CXF。问题是我的路径上的JAX-RS restlet扩展。将以下内容添加到我的pom中:

        <exclusions>
            <exclusion>
                <artifactId>org.restlet</artifactId>
                <groupId>org.restlet</groupId>
            </exclusion>
            <exclusion>
                <artifactId>org.restlet.ext.xstream</artifactId>
                <groupId>org.restlet.jse</groupId>
            </exclusion>
            <exclusion>
                <artifactId>org.restlet.ext.jaxrs</artifactId>
                <groupId>org.restlet.jse</groupId>
            </exclusion>
            <exclusion>
                <artifactId>org.restlet.ext.slf4j</artifactId>
                <groupId>org.restlet.jse</groupId>
            </exclusion>
            <exclusion>
                <artifactId>org.restlet</artifactId>
                <groupId>org.restlet.jse</groupId>
            </exclusion>
        </exclusions>

为我修好了。