如何在Spring下的Jetty服务器上发布CXF Web服务?

时间:2012-05-08 10:16:49

标签: java spring jetty jax-ws cxf

我目前正在开发一个独立的弹簧应用程序(不在容器中)。此应用程序需要提供Servlet和WebService。所以我选择了apache cxf和jetty。

我设法让它工作但我有两个独立的Jetty实例,一个用于servlet,另一个用于cxf。所以我的问题是,如何指定CXF使用哪个Jetty服务器实例?

以下是我的配置摘录。

设置http服务器

<bean id="http-server" class="org.eclipse.jetty.server.Server"
    init-method="start" destroy-method="stop">

    <property name="connectors">
        <list>
            <bean class="org.eclipse.jetty.server.nio.SelectChannelConnector">
                <property name="port" value="8080" />
            </bean>
        </list>
    </property>
    <property name="handler">
        <bean id="handlers" class="org.eclipse.jetty.server.handler.HandlerList">
            <property name="handlers">
                <list>
                    <ref bean="ServletContainer" />
                    <bean class="org.eclipse.jetty.server.handler.DefaultHandler" />
                </list>
            </property>
        </bean>
    </property>
</bean>

以上适用于servlet ......

安装CXF

<import resource="classpath:META-INF/cxf/cxf.xml" />
<import resource="classpath:META-INF/cxf/cxf-servlet.xml" />

<jaxws:endpoint id="WebService" implementor="com.MyWebServiceImp"
    address="/ws">
    <jaxws:features>
        <bean class="org.apache.cxf.feature.LoggingFeature" />
    </jaxws:features>
    <jaxws:properties>
        <entry key="faultStackTraceEnabled" value="false" />
        <entry key="exceptionMessageCauseEnabled" value="false" />
        <entry key="schema-validation-enabled" value="true" />
    </jaxws:properties>
</jaxws:endpoint>

使用上面的配置,系统启动但Web服务没有“发布”到jetty服务器,并且日志中没有任何“异常”。

我已经尝试过在Google上可以找到或找到的所有内容。任何信息或建议将非常感谢,因为我已经花了几天时间。

由于

1 个答案:

答案 0 :(得分:1)

这里有一个不同的答案,你可以在春天使用maven创建应用程序,但是使用maven你会发布你的应用程序,而在这里构建它是如何,你的pom.xml插件配置:

<plugin>
    <groupId>org.mortbay.jetty</groupId>
    <artifactId>jetty-maven-plugin</artifactId>
    <version>7.0.2.v20100331</version>
    <configuration>
        <webAppConfig>
            <contextPath>/yourapplication</contextPath>
            <descriptor>
                ${basedir}/src/main/webapp/WEB-INF/jetty/jetty-web.xml
            </descriptor>
        </webAppConfig>
        <scanIntervalSeconds>5</scanIntervalSeconds>
        <stopPort>9966</stopPort>
        <stopKey>foo</stopKey>
        <connectors>
            <connector implementation="org.eclipse.jetty.server.nio.SelectChannelConnector">
                <port>9080</port>
                <maxIdleTime>60000</maxIdleTime>
            </connector>
        </connectors>
    </configuration>
    <executions>
        <execution>
            <id>start-jetty</id>
            <phase>pre-integration-test</phase>
            <goals>
                <goal>run</goal>
            </goals>
            <configuration>
                <daemon>true</daemon>
            </configuration>
        </execution>
        <execution>
            <id>stop-jetty</id>
            <phase>post-integration-test</phase>
            <goals>
                <goal>stop</goal>
            </goals>
        </execution>
    </executions>
</plugin>

您的网络xml在上面的pom中指定为jetty-web.xml。因此,将您的cxf Web服务发布到jetty服务器会很容易。假设一切设置正确,只需mvn clean install将您的服务发布到码头。