Java 获取SRVE0190E:尝试调用REST webservice时出现找不到文件错误

Java 获取SRVE0190E:尝试调用REST webservice时出现找不到文件错误,java,spring,web-services,websphere,cxf,Java,Spring,Web Services,Websphere,Cxf,我使用Spring和CXF开发了一个简单的REST GET服务。我在WAS 8.5.5中部署了这个服务。当我尝试调用这个web服务时,我得到了404错误。 下面是WAS服务器日志。 谁能帮我解决这个问题 我还将com.ibm.websphere.jaxrs.server.disableibmjaxrengine属性添加为WAS JVM自定义属性中的true 1/28/15 15:58:04:270 CST] FFDC Exception:java.io.FileNotFoundExcep

我使用Spring和CXF开发了一个简单的REST GET服务。我在WAS 8.5.5中部署了这个服务。当我尝试调用这个web服务时,我得到了404错误。 下面是WAS服务器日志。 谁能帮我解决这个问题

我还将
com.ibm.websphere.jaxrs.server.disableibmjaxrengine
属性添加为WAS JVM自定义属性中的true

1/28/15 15:58:04:270 CST]     FFDC Exception:java.io.FileNotFoundException SourceId:com.ibm.ws.webcontainer.filter.WebAppFilterManager.invokeFilters -IOE ProbeId:1044
java.io.FileNotFoundException: SRVE0190E: File not found: /services/REST/test/status
  at com.ibm.ws.webcontainer.extension.DefaultExtensionProcessor._processEDR(DefaultExtensionProcessor.java:909)
  at com.ibm.ws.webcontainer.extension.DefaultExtensionProcessor.processEDR(DefaultExtensionProcessor.java:890)
  at com.ibm.ws.webcontainer.extension.DefaultExtensionProcessor.handleRequest(DefaultExtensionProcessor.java:451)
  at com.ibm.ws.webcontainer.filter.WebAppFilterManager.invokeFilters(WebAppFilterManager.java:1032)
  at com.ibm.ws.webcontainer.webapp.WebApp.handleRequest(WebApp.java:3761)
  at com.ibm.ws.webcontainer.webapp.WebGroup.handleRequest(WebGroup.java:304)
  at com.ibm.ws.webcontainer.WebContainer.handleRequest(WebContainer.java:976)
  at com.ibm.ws.webcontainer.WSWebContainer.handleRequest(WSWebContainer.java:1662)
  at com.ibm.ws.webcontainer.channel.WCChannelLink.ready(WCChannelLink.java:200)
  at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleDiscrimination(HttpInboundLink.java:459)
  at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleNewRequest(HttpInboundLink.java:526)
  at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.processRequest(HttpInboundLink.java:312)
  at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.ready(HttpInboundLink.java:283)
  at com.ibm.ws.tcp.channel.impl.NewConnectionInitialReadCallback.sendToDiscriminators(NewConnectionInitialReadCallback.java:214)
  at com.ibm.ws.tcp.channel.impl.NewConnectionInitialReadCallback.complete(NewConnectionInitialReadCallback.java:113)
  at com.ibm.ws.tcp.channel.impl.AioReadCompletionListener.futureCompleted(AioReadCompletionListener.java:175)
  at com.ibm.io.async.AbstractAsyncFuture.invokeCallback(AbstractAsyncFuture.java:217)
  at com.ibm.io.async.AsyncChannelFuture.fireCompletionActions(AsyncChannelFuture.java:161)
  at com.ibm.io.async.AsyncFuture.completed(AsyncFuture.java:138)
  at com.ibm.io.async.ResultHandler.complete(ResultHandler.java:204)
  at com.ibm.io.async.ResultHandler.runEventProcessingLoop(ResultHandler.java:775)
  at com.ibm.io.async.ResultHandler$2.run(ResultHandler.java:905)
  at com.ibm.ws.util.ThreadPool$Worker.run(ThreadPool.java:1862)


Reporter:null

面对同样的问题,你找到解决办法了吗?