Can't find the request for http://localhost:8080/****/****.do's Observer

一般这个错是你可能在项目中用到了cxf,在web.xml中cxf的配置中你可能url-pattern配置为/*,

解决办法:

你在客户端删掉web.xml中的cxf配置或者是在mapping中不要让它映射所有<servlet-mapping>
   <servlet-name>CXFServlet</servlet-name>
   <url-pattern>/加上路径/*</url-pattern>
   </servlet-mapping>
不然就会首先映射CXFServlet,就会找不到服务!

你可能感兴趣的:(Can't find the request for http://localhost:8080/****/****.do's Observer)