2

我正在使用 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,而无需启动嵌入式码头。

4

2 回答 2

0

最后,当我从 jaxrs-server 地址配置中删除绝对位置并保留相对上下文路径时,它起作用了。

于 2013-10-10T13:09:27.527 回答
0

请提供有关您使用的 mvn 命令和您的 POM 文件的更多信息。

根据提供的信息,我假设您使用的是“mvn * install”。使用“mvn clean 编译包”。使用它,它只会创建 WAR 文件,然后您可以将其复制到您的 tomcat 服务器中。

此外,如果您不打算使用 JETTY 进行部署,则必须将它们排除在 POM 中,否则它们将始终存在于您的类路径中。排除样本 -

<exclusions>
                <exclusion>
                    <groupId>org.eclipse.jetty</groupId>
                    <artifactId>jetty-continuation</artifactId>
                </exclusion>
                <exclusion>
                    <groupId>org.eclipse.jetty</groupId>
                    <artifactId>jetty-io</artifactId>
                </exclusion>
</exclusions>

这些 JAR 包含在 CXF 包中。结帐 maven 排除以获取更多详细信息

于 2013-09-05T13:16:07.020 回答