0

我已经使用 Apache CXF (CXFServlet) 和 Spring (ContextLoaderListener) 编写了一个小型示例 Web 服务,我已经注册了 CXFServlet 来监听/url。我在 beans.xml 中声明我的 bean。

当我使用 tomcat 启动 Web 服务并转到服务 url 时,我可以看到 Web 服务定义(例如方法、端点、wsdl 链接)。但问题是,当我单击 wsdl 链接时,我并没有得到 WSDL 文件,而是递归地转发回同一页面,但每次都附加了 Web 服务地址的名称:

  1. localhost:8080/Test/accountEndpoint
  2. localhost:8080/Test/accountEndpointaccountEndpoint
  3. localhost:8080/Test/accountEndpointaccountEndpointaccountEndpoint

该服务是一个“代码优先”服务,其中一个 @WebService 注释了 java 接口和一个实现类。

web.xml

<?xml version="1.0" encoding="UTF-8"?>
<web-app version="2.5"
    xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
                        http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">
    <display-name>Test</display-name>
    <servlet>
            <servlet-name>cxf</servlet-name>
            <display-name>cxf</display-name>
            <description>Apache CXF Endpoint</description>
            <servlet-class>org.apache.cxf.transport.servlet.CXFServlet</servlet-class>
            <load-on-startup>1</load-on-startup>
    </servlet>

    <servlet-mapping>
            <servlet-name>cxf</servlet-name>
            <url-pattern>/</url-pattern>
    </servlet-mapping>

    <session-config>
            <session-timeout>60</session-timeout>
    </session-config>

    <context-param>
            <param-name>contextConfigLocation</param-name>
            <param-value>WEB-INF/beans.xml</param-value>
    </context-param>

    <listener>
        <listener-class>
            org.springframework.web.context.ContextLoaderListener
        </listener-class>
    </listener>
</web-app>

豆类.xml

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
    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.xsd
        http://cxf.apache.org/jaxws http://cxf.apache.org/schemas/jaxws.xsd">

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

    <bean id="account" class=".....AccountImpl" />

    <jaxws:endpoint id="accountEndpoint" implementor="#account"
        address="accountEndpoint" />
</beans>

据我了解,当我单击链接时,CXF 应该自动生成 WSDL 文件并将其提供给我,所以我不明白为什么没有发生这种情况。

4

1 回答 1

2

以这种方式指定地址,使用前导斜杠:

<jaxws:endpoint id="accountEndpoint" implementor="#account"
    address="/accountEndpoint" />

抱歉,修改一下,上面的不正确:

你是对的,我可以通过将 CXFServlet 映射到 的“默认”servlet 路径映射来复制行为/,我可以自己解决的问题是将其映射到/*

<servlet-mapping>
        <servlet-name>cxf</servlet-name>
        <url-pattern>/*</url-pattern>
</servlet-mapping>
于 2012-12-21T22:03:21.467 回答