0
我已經使用Apache CXF(CXFServlet)和Spring(ContextLoaderListener)編寫了一個小樣本Web服務,我已經註冊了CXFServlet來收聽/
url。我正在beans.xml中聲明我的bean。Apache CXF和Spring但沒有WSDL(遞歸鏈接)
當我使用tomcat啓動web服務並轉到服務url時,我可以看到web服務定義(例如方法,端點,wsdl鏈接)。但問題是,當我點擊wsdl鏈接時,我沒有得到WSDL文件,而是遞歸地轉發回到同一頁面,但每次附加Web服務地址的名稱時:
- 本地主機:8080 /測試/ accountEndpoint
- 本地主機:8080 /測試/ accountEndpointaccountEndpoint
- 本地主機:8080 /測試/ accountEndpointaccountEndpointaccountEndpoint
的服務是一個 「代碼優先」 的服務,其一個@WebService帶註釋的java接口和實現cl屁股。
的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文件,並將其提供給我,當我點擊鏈接,所以我不明白爲什麼沒有發生。
如果我那麼,第一個地址是:'localhost:8080/Test // accountEndpoint'(注意雙斜槓?),但結果是相同的遞歸鏈接問題 – lanoxx
你是對的..可以複製你所處的行爲看到,我的機器中的修復程序是要更改servlet映射中的url-pattern,但不完全確定它爲什麼可以與此更改一起工作 - 現在更新了答案。 –
非常感謝,解決了它。但第一部分也是正確的,地址值也需要一個主要的斜槓,否則我得到一個404,使用兩個建議的更改它的工作。 – lanoxx