我编写了一个小型示例Web服务,使用Apache CXF(CXFServlet)和Spring(ContextLoaderListener)我已经注册了CXFServlet来监听/
网址。我在beans.xml中声明了我的bean。
当我使用tomcat启动Web服务并转到服务URL时,我可以看到Web服务定义(例如,方法,端点,wsdl链接)。但问题是,当我点击wsdl链接时,我没有得到WSDL文件,而是我递归转发回同一页面,但每次附加Web服务地址的名称:
该服务是一个“代码优先”服务,它是一个@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>
的beans.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文件并提供给我,所以我不明白为什么没有发生这种情况。
答案 0 :(得分:2)
以这种方式指定地址,带有前导斜杠:
<jaxws:endpoint id="accountEndpoint" implementor="#account"
address="/accountEndpoint" />
抱歉,进行更改,以上内容不正确:
你是对的,我能够通过将CXFServlet映射到/
的“默认”servlet路径映射来复制行为,我可以为自己工作的修复是将它映射到{{1而是:
/*