我有以下代码:
@Path("/automation/devices")
@Singleton
public class DevicesWebService {
private AppiumServerManager appiumServerManager;
private AdbService adbService;
private DevicesService deviceService;
public DevicesWebService() {
this(new AdbServiceLocal(), new AppiumServerManagerLocal());
}
@VisibleForTesting
public DevicesWebService(AdbService adbService, AppiumServerManagerLocal AppiumServerManager) {
this.adbService = adbService;
this.appiumServerManager = AppiumServerManager;
}
@GET
@Produces(MediaType.TEXT_PLAIN)
public String getMessage() {
return "welocme to devices web-service";
}
@POST
@Consumes({MediaType.APPLICATION_JSON})
@Produces({MediaType.TEXT_PLAIN})
@Path("/acquireDevice/{device}/{port}")
public Response acquireDevice(@PathParam("device") Device device, @PathParam("port") Integer port) throws
Exception {
try {
deviceService.acquireDevice(device, port);
} catch (RuntimeException e) {
return Response.status(Response.Status.NOT_FOUND).build();
}
return Response.status(Response.Status.OK).build();
}
//
public static void main(String[] args) throws IOException {
HttpServer server = HttpServerFactory.create("http://localhost:9998/");
server.start();
System.out.println("Server running");
System.out.println("Visit: http://localhost:9998/automation/devices");
}
}
我的代码在运行时由于以下异常而失败:
Mar 20, 2016 12:37:51 PM com.sun.jersey.api.core.ScanningResourceConfig logClasses
INFO: Root resource classes found:
class com.m.mobileautomation.devices.webServices.DevicesWebService
class com.m.mobileautomation.MobileAutomationWebService
Mar 20, 2016 12:37:51 PM com.sun.jersey.api.core.ScanningResourceConfig logClasses
INFO: Provider classes found:
class org.codehaus.jackson.jaxrs.JacksonJaxbJsonProvider
class org.codehaus.jackson.jaxrs.JacksonJsonProvider
class org.codehaus.jackson.jaxrs.JsonMappingExceptionMapper
class org.codehaus.jackson.jaxrs.JsonParseExceptionMapper
Mar 20, 2016 12:37:51 PM com.sun.jersey.server.impl.application.WebApplicationImpl _initiate
INFO: Initiating Jersey application, version 'Jersey: 1.19 02/11/2015 05:39 AM'
Mar 20, 2016 12:37:52 PM com.sun.jersey.spi.inject.Errors processErrorMessages
SEVERE: The following errors and warnings have been detected with resource and/or provider classes:
SEVERE: Missing dependency for method public javax.ws.rs.core.Response com.m.mobileautomation.devices.webServices.DevicesWebService.acquireDevice(com.m.mobileautomation.devices.dataModel.Device,java.lang.Integer) throws java.lang.Exception at parameter at index 0
SEVERE: Method, public javax.ws.rs.core.Response com.m.mobileautomation.devices.webServices.DevicesWebService.acquireDevice(com.m.mobileautomation.devices.dataModel.Device,java.lang.Integer) throws java.lang.Exception, annotated with POST of resource, class com.m.mobileautomation.devices.webServices.DevicesWebService, is not recognized as valid resource method.
Exception in thread "main" com.sun.jersey.spi.inject.Errors$ErrorMessagesException
at com.sun.jersey.spi.inject.Errors.processErrorMessages(Errors.java:170)
at com.sun.jersey.spi.inject.Errors.postProcess(Errors.java:136)
at com.sun.jersey.spi.inject.Errors.processWithErrors(Errors.java:199)
at com.sun.jersey.server.impl.application.WebApplicationImpl.initiate(WebApplicationImpl.java:795)
at com.sun.jersey.api.container.ContainerFactory.createContainer(ContainerFactory.java:172)
at com.sun.jersey.api.container.ContainerFactory.createContainer(ContainerFactory.java:264)
at com.sun.jersey.api.container.ContainerFactory.createContainer(ContainerFactory.java:246)
at com.sun.jersey.api.container.httpserver.HttpServerFactory.create(HttpServerFactory.java:117)
at com.sun.jersey.api.container.httpserver.HttpServerFactory.create(HttpServerFactory.java:92)
at com.m.mobileautomation.devices.webServices.DevicesWebService.main(DevicesWebService.java:86)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:483)
at com.intellij.rt.execution.application.AppMain.main(AppMain.java:144)
如果我注释掉
public Response acquireDevice
一切正常。我也尝试删除``,但仍然出现错误:
SEVERE: The following errors and warnings have been detected with resource and/or provider classes:
SEVERE: Missing dependency for method public void com.m.mobileautomation.devices.webServices.DevicesWebService.acquireDevice(com.m.mobileautomation.devices.dataModel.Device,java.lang.Integer) throws java.lang.Exception at parameter at index 0
SEVERE: Method, public void com.m.mobileautomation.devices.webServices.DevicesWebService.acquireDevice(com.m.mobileautomation.devices.dataModel.Device,java.lang.Integer) throws java.lang.Exception, annotated with POST of resource, class com.m.mobileautomation.devices.webServices.DevicesWebService, is not recognized as valid resource method.
Exception in thread "main" com.sun.jersey.spi.inject.Errors$ErrorMessagesException
at com.sun.jersey.spi.inject.Errors.processErrorMessages(Errors.java:170)
at com.sun.jersey.spi.inject.Errors.postProcess(Errors.java:136)
at com.sun.jersey.spi.inject.Errors.processWithErrors(Errors.java:199)
at com.sun.jersey.server.impl.application.WebApplicationImpl.initiate(WebApplicationImpl.java:795)
at com.sun.jersey.api.container.ContainerFactory.createContainer(ContainerFactory.java:172)
at com.sun.jersey.api.container.ContainerFactory.createContainer(ContainerFactory.java:264)
at com.sun.jersey.api.container.ContainerFactory.createContainer(ContainerFactory.java:246)
at com.sun.jersey.api.container.httpserver.HttpServerFactory.create(HttpServerFactory.java:117)
at com.sun.jersey.api.container.httpserver.HttpServerFactory.create(HttpServerFactory.java:92)
at com.waze.mobileautomation.devices.webServices.DevicesWebService.main(DevicesWebService.java:87)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:483)
at com.intellij.rt.execution.application.AppMain.main(AppMain.java:144)
我怎样才能解决这个问题?
最佳答案
正如@peeskillet所说,@PathParam
不应用于传递对象,因为它更常用于指定一个变量,您将使用该变量来标识要对其进行操作的资源/对象(例如,在您的情况下,我可能会使用acquireDevice/{deviceId}/{port}
如果说的话,该ID事先具有任何意义)。
像现在一样使用它,当您进行测试或需要查看日志中发生的事情时,还可以真正为您混淆东西-想一想中间插入json的条目在应用程序访问日志中的外观。
如果您要传递对象,则一定要使用请求的正文-还请注意,杰克逊(我看到了它的标签,因此我假设您使用的是Jersey)必须知道如何反序列化该对象,否则您将也失败了。