Tomcat无法启动我的Web服务

时间:2014-08-03 06:22:37

标签: web-services tomcat java-ee tomcat7 cxf

我使用[Spring,Apache Cxf,Tomcat,intellij Idea]创建了一个Web服务 我配置tomcat并运行它之后。我明白了 Output log on console 我的网络服务: My web service class web.xml中: web.xml Spring appContext: Spring-applicationContext

1 个答案:

答案 0 :(得分:1)

您似乎缺少适用于CXF标记的xsd的配置。您的配置文件中应该有以下对:

http://cxf.apache.org/jaxws http://cxf.apache.org/schemas/jaxws.xsd

所以,结合起来,你有

<xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:jaxws="http://cxf.apache.org/jaxws" 
  xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd http://cxf.apache.org/jaxws http://cxf.apache.org/schemas/jaxws.xsd">

此外,确保您具有CXF前端标记的必要依赖项,特别是: cxf-rt-frontend-jaxws.jar