我正在使用 Apache CXF、Apache Camel 和带有 Maven 的 Spring 创建 JAX-RS 应用程序。当我运行应用程序时,它正在创建一个嵌入式码头并为请求提供服务。
我想删除嵌入式码头并使用war文件在独立的Tomcat上运行它。我尝试了许多可用的建议,但不适用于我的情况。请对此提出任何建议。
我的 POM 包含
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
<version>2.7.6</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxrs</artifactId>
<version>2.7.6</version>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-servlets</artifactId>
<version>8.1.3.v20120416</version>
</dependency>
<build>
<plugin>
<groupId>org.mortbay.jetty</groupId>
<artifactId>jetty-maven-plugin</artifactId>
<version>8.1.12.v20130726</version>
<configuration>
<scanIntervalSeconds>5</scanIntervalSeconds>
<webApp>
<contextPath>myfashions</contextPath>
<defaultsDescriptor>
${basedir}/src/main/resources/webdefault.xml
</defaultsDescriptor>
</webApp>
</configuration>
</plugin>
</build>
当我使用 jetty:run with port 8081 from intellij idea 运行它时,我的应用程序正在端口 8080 上启动另一个嵌入式码头服务器并服务请求。
当我删除所有码头依赖项和插件并在 tomcat 中部署生成的 WAR 时,我收到错误消息
013-09-06_01:21:21 ERROR o.a.c.t.http.HTTPTransportFactory - Cannot find any registered HttpDestinationFactory from the Bus.
Sep 06, 2013 1:21:21 AM org.springframework.web.context.ContextLoader initWebApplicationContext
SEVERE: Context initialization failed
org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'baseApi': Invocation of init method failed; nested exception is org.apache.cxf.service.factory.ServiceConstructionException
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1482)
请提出一种方法,以便我可以生成在 tomcat 内部运行的 WAR,而无需启动嵌入式码头。