我在使用 DefaultWsdl11Definition 自动生成 wsdl 时遇到问题
ContactServiceOperations.xsd
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns="http://com/blog/samples/webservices/contactservice"
xmlns:Contact="http://webservices.samples.blog.com" targetNamespace="http://com/blog/samples/webservices/Contact"
elementFormDefault="qualified">
<xsd:import namespace="http://webservices.samples.blog.com"
schemaLocation="Contact.xsd" />
<xsd:element name="ContactRequest">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="Id" type="xsd:integer" />
</xsd:sequence>
</xsd:complexType>
</xsd:element>
<xsd:element name="ContactResponse">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="Contact" type="Contact:Contact" />
</xsd:sequence>
</xsd:complexType>
</xsd:element>
springapp-servlet.xml
<mvc:annotation-driven />
<sws:annotation-driven />
<context:component-scan base-package="*" />
<bean id="ContactService"
class="org.springframework.ws.wsdl.wsdl11.DefaultWsdl11Definition">
<property name="schemaCollection">
<bean
class="org.springframework.xml.xsd.commons.CommonsXsdSchemaCollection">
<property name="inline" value="true" />
<property name="xsds">
<list>
<value>/xsd/ContactServiceOperations.xsd</value>
</list>
</property>
</bean>
</property>
<property name="portTypeName" value="ContactService" />
<property name="locationUri" value="http://localhost:8080/SpringWS/ContactService/" />
</bean>
web.xml
<welcome-file-list>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>
<servlet>
<servlet-name>springapp</servlet-name>
<servlet-class>
org.springframework.web.servlet.DispatcherServlet
</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>springapp</servlet-name>
<url-pattern>/jsp/*</url-pattern>
</servlet-mapping>
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>classpath*:*.xml</param-value>
</context-param>
<listener>
<listener-class>
org.springframework.web.context.ContextLoaderListener
</listener-class>
</listener>
<servlet>
<servlet-name>webservices</servlet-name>
<servlet-class>org.springframework.ws.transport.http.MessageDispatcherServlet</servlet-class>
<init-param>
<param-name>transformWsdlLocations</param-name>
<param-value>true</param-value>
</init-param>
<init-param>
<param-name>contextConfigLocation</param-name>
<param-value></param-value>
</init-param>
</servlet>
<servlet-mapping>
<servlet-name>webservices</servlet-name>
<url-pattern>*.wsdl</url-pattern>
</servlet-mapping>
<servlet-mapping>
<servlet-name>webservices</servlet-name>
<url-pattern>/ContactService/*</url-pattern>
</servlet-mapping>
我可以毫无错误地启动 Tomcat。然后,我访问这个 URL:
http://localhost:8080/SpringWS/ContactService/contactService.wsdl
并且浏览器显示一个空白页面而不是生成的 wsdl。
也许我的配置有问题。有什么想法可以帮助我吗?
谢谢