org.apache.cxf.interceptor.Fault:调用公共java.lang.String JaxRS服务器时为null

时间:2015-06-22 09:09:10

标签: rest url java-ee jax-rs query-parameters

@GET
@Path("/freePlaces")
@Produces("application/json")
public String places(@QueryParam("projectionId") String projectionId) {
    return projectionDAO.findById(Long.parseLong(projectionId)).getPlaces().toString();
}

我有这个简单的方法,当我在url中写道时:

http://localhost:8080/cinema/rest/projection/freePlaces?projectionId=351

我得到了这个例外:

  

java.lang.RuntimeException:org.apache.cxf.interceptor.Fault:null   在调用public java.lang.String时   带有参数的cinema.services.ProjectionManager.places(java.lang.String)   [351]。 org.apache.cxf.interceptor.Fault:调用public时为null   java.lang.String中   带有参数的cinema.services.ProjectionManager.places(java.lang.String)   [351]

我需要一些帮助来解决这个问题。

0 个答案:

没有答案