0

我是网络服务的新手,我想知道我做错了什么这是我获取所有 listCustomers 的代码

@Path("/allCustomers")
@GET
@Produces("application/xml")
public List<Customer> listAllCustomers(){
    return customerDao.listAllCustomers();
}

为了测试我的服务,我使用了 netbeans 工具(TEST RESTFUL web services),我收到了这个错误

 Avertissement: StandardWrapperValve[ServletAdaptor]: PWC1406: Servlet.service() for  servlet ServletAdaptor threw exception
 java.lang.NullPointerException
 at com.supinfo.supinbank.service.CustomerService.listAllCustomers(CustomerService.java:45)
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)

PS:我不知道是否必须使用 XmlRootElement 注释客户实体,但我做到了......

4

2 回答 2

0

经过长时间的搜索,我找到了一种使用 netbeans 自动创建 web 服务的惰性方法。首先,我通过使用 @WebService 注释我的类和使用 @WebMethod 注释我的方法来创建一个简单的 Web 服务。然后我只需右键单击我的服务并使用 netbeans 生成 restful 服务,结果如下所示:

@GET
@Produces("application/xml")
@Consumes("text/plain")
@Path("listallcustomers/")
public JAXBElement<ListAllCustomersResponse> getListAllCustomers() {
    try {
        // Call Web Service Operation
        if (port != null) {
            java.util.List<com.supinfo.supinbank.service_client.Customer> result = port.listAllCustomers();

            class ListAllCustomersResponse_1 extends com.supinfo.supinbank.service_client.ListAllCustomersResponse {

                ListAllCustomersResponse_1(java.util.List<com.supinfo.supinbank.service_client.Customer> _return) {
                    this._return = _return;
                }
            }
            com.supinfo.supinbank.service_client.ListAllCustomersResponse response = new ListAllCustomersResponse_1(result);
            return new com.supinfo.supinbank.service_client.ObjectFactory().createListAllCustomersResponse(response);
        }
    } catch (Exception ex) {
        // TODO handle custom exceptions here
    }
    return null;
}

现在它工作得很好......

于 2012-05-20T16:57:38.010 回答
0

例外是 NullPointerException,这意味着您的对象 customerDao 为空,这就是您的问题的原因。

于 2012-05-20T02:18:33.183 回答