Spring Web Service 学习之Hello World篇

Spring Web ServiceSpring社区基于Spring提供的一个关注于创建文档驱动Web Service的模块, 它的主要目标是方便基于契约优先”(Contract-First)SOAP服务的开发. 好像没有多少人讨论, 大多数的话题都是围绕xfire, cxf, axis/axis2等主流的Web Service框架.尽管是从事这方面的工作, 不过实际开发中还是公司内部开发的一个Web Service模块, 发现与Spring提供的这个模块的构架很像,所以拿出来学习学习.还是先来跑一个类似于Hello Wrold的例子吧.

 

1, 确定SOAP Body中包含的xml

客户端向服务端发出的xml如下:

<?xml version="1.0" encoding="UTF-8"?>
<HelloRequest xmlns=”http://www.fuxueliang.com/ws/hello” >
	Rondy.F
</HelloRequest> 

 

服务端返回的xml如下:

<?xml version="1.0" encoding="UTF-8"?>
<HelloResponse xmlns=”http://www.fuxueliang.com/ws/hello” >
	Hello, Rondy.F!
</HelloResponse>
 

2, 确定WSDL

<?xml version="1.0" encoding="UTF-8"?>
<wsdl:definitions 
	xmlns:wsdl=”http://schemas.xmlsoap.org/wsdl/” 
	xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
	xmlns:schema=”http://www.fuxueliang.com/ws/hello”
	xmlns:tns="http://www.fuxueliang.com/ws/hello/definitions"
	targetNamespace="http://www.fuxueliang.com/ws/hello/definitions">	
	<wsdl:types>
	<schema xmlns="htp://www.w3.org/2001/XMLSchema" 	
		argetNamespace="http://www.fuxueliang.com/ws/hello">
		<element name="HelloRequest" type="string" />
		<element name="HelloResponse" type="string" />
	</schema>
	</wsdl:types>
	<wsdl:message name="HelloRequest">
		<wsdl:part element="schema:HelloRequest" name="HelloRequest" />
	</wsdl:message>
	<wsdl:message name="HelloResponse">
		<wsdl:part element="schema:HelloResponse" name="HelloResponse" />
	</wsdl:message>
	<wsdl:portType name="HelloPortType">
		<wsdl:operation name="Hello">
			<wsdl:input message="tns:HelloRequest" name="HelloRequest" />
			<wsdl:output message="tns:HelloResponse" name="HelloResponse" />
		</wsdl:operation>
	</wsdl:portType>
	<wsdl:binding name="HelloBinding" type="tns:HelloPortType">
		<soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http" />
		<wsdl:operation name="Hello">
			<soap:operation soapAction="" />
			<wsdl:input name="HelloRequest">
				<soap:body use="literal" />
			</wsdl:input>
			<wsdl:output name="HelloResponse">
				<soap:body use="literal" />
			</wsdl:output>
		</wsdl:operation>
	</wsdl:binding>
	<wsdl:service name="HelloService">
		<wsdl:port binding="tns:HelloBinding" name="HelloPort">
			<soap:address location="http://localhost:8080/springws/webservice" />
		</wsdl:port>
	</wsdl:service>
</wsdl:definitions>
   

 3, 创建一个Web项目, 由于Spring Web Service是基于Spring MVC, web.xml中添加如下servlet, 并在WEB-INF下建立SpringMVC的默认配置文件spring-ws-servlet.xml:

<servlet>		
	<servlet-name>spring-ws</servlet-name>		
	<servlet-class>org.springframework.ws.transport.http.MessageDispatcherServlet</servlet-class>
</servlet>
<servlet-mapping>
	<servlet-name>spring-ws</servlet-name>
	<url-pattern>/*</url-pattern>
</servlet-mapping>
 

4, 创建业务方法及具体实现如下:

/**
 * @author Rondy.F
 * 
 */
public interface HelloService {

	String hello(String name);

}
 
/**
 * @author Rondy.F
 * 
 */
public class HelloServiceImpl implements HelloService {

	public String hello(String name) {
		return "Hello, " + name + "!";
	}

}
 

5, 实现一个EndPoint来处理接收到的xml及返回xml.当然, Spring Web Service提供了很多抽象的实现, 包括Dom4j, JDom等等.这里我们使用JDK自带的, 需要继承org.springframework.ws.server.endpoint.AbstractDomPayloadEndpoint.

/**
 * @author Rondy.F
 * 
 */
public class HelloEndPoint extends AbstractDomPayloadEndpoint {

	/**
	 * Namespace of both request and response.
	 */
	public static final String NAMESPACE_URI = "http://www.fuxueliang.com/ws/hello";

	/**
	 * The local name of the expected request.
	 */
	public static final String HELLO_REQUEST_LOCAL_NAME = "HelloRequest";

	/**
	 * The local name of the created response.
	 */
	public static final String HELLO_RESPONSE_LOCAL_NAME = "HelloResponse";

	private HelloService helloService;

	@Override
	protected Element invokeInternal(Element requestElement, Document document) throws Exception {		
		Assert.isTrue(NAMESPACE_URI.equals(requestElement.getNamespaceURI()), "Invalid namespace");		
		Assert.isTrue(HELLO_REQUEST_LOCAL_NAME.equals(requestElement.getLocalName()), "Invalid local name");
		NodeList children = requestElement.getChildNodes();
		Text requestText = null;
		for (int i = 0; i < children.getLength(); i++) {
			if (children.item(i).getNodeType() == Node.TEXT_NODE) {
				requestText = (Text) children.item(i);
				break;
			}
		}
		if (requestText == null) {
			throw new IllegalArgumentException("Could not find request text node");
		}

		String response = helloService.hello(requestText.getNodeValue());
		Element responseElement = document.createElementNS(NAMESPACE_URI, HELLO_RESPONSE_LOCAL_NAME);
		Text responseText = document.createTextNode(response);
		responseElement.appendChild(responseText);
		return responseElement;
	}

	public void setHelloService(HelloService helloService) {
		this.helloService = helloService;
	}

}
 

6, 修改配置文件spring-ws-servlet.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"
	xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd">

	<bean id="payloadMapping" class="org.springframework.ws.server.endpoint.mapping.PayloadRootQNameEndpointMapping">
		<property name="endpointMap">
			<map>
				<entry key=”{http://www.fuxueliang.com/ws/hello}HelloRequest” />		
					<ref bean="helloEndpoint" />
				</entry>
			</map>
		</property>
	</bean>
	<bean id="hello" class="org.springframework.ws.wsdl.wsdl11.SimpleWsdl11Definition">
		<property name="wsdl" value="/WEB-INF/hello.wsdl"/>
	</bean>
	<bean id="helloEndpoint" class="org.rondy.ws.HelloEndPoint">
		<property name="helloService" ref="helloService" />
	</bean>
	<bean id="helloService" class="org.rondy.service.HelloServiceImpl" />
</beans>
    

: 其中最主要的bean就是payloadMapping, 它定义了接收到的messageendpoint之间的mapping关系:SOAP Body中包含的xml的根节点的QName{http://www.fuxueliang.com/ws/hello}HelloRequest交给helloEndpoint处理.
SimpleWsdl11Definition这个bean则是定义了这个服务的wsdl, 访问地址是:http://localhost:8080/springws/hello.wsdl.

 

7, 客户端(saaj实现)的代码如下:

/**
 * 
 * @author Rondy.F
 * 
 */
public class HelloWebServiceClient {

	public static final String NAMESPACE_URI = "http://www.fuxueliang.com/ws/hello";

	public static final String PREFIX = "tns";

	private SOAPConnectionFactory connectionFactory;

	private MessageFactory messageFactory;

	private URL url;

	public HelloWebServiceClient(String url) throws SOAPException, MalformedURLException {
		connectionFactory = SOAPConnectionFactory.newInstance();
		messageFactory = MessageFactory.newInstance();
		this.url = new URL(url);
	}

	private SOAPMessage createHelloRequest() throws SOAPException {
		SOAPMessage message = messageFactory.createMessage();
		SOAPEnvelope envelope = message.getSOAPPart().getEnvelope();
		Name helloRequestName = envelope.createName("HelloRequest", PREFIX, NAMESPACE_URI);
		SOAPBodyElement helloRequestElement = message.getSOAPBody().addBodyElement(helloRequestName);
		helloRequestElement.setValue("Rondy.F");
		return message;
	}

	public void callWebService() throws SOAPException, IOException {
		SOAPMessage request = createHelloRequest();
		SOAPConnection connection = connectionFactory.createConnection();
		SOAPMessage response = connection.call(request, url);
		if (!response.getSOAPBody().hasFault()) {
			writeHelloResponse(response);
		} else {
			SOAPFault fault = response.getSOAPBody().getFault();
			System.err.println("Received SOAP Fault");
			System.err.println("SOAP Fault Code :" + fault.getFaultCode());
			System.err.println("SOAP Fault String :" + fault.getFaultString());
		}
	}

	@SuppressWarnings("unchecked")
	private void writeHelloResponse(SOAPMessage message) throws SOAPException {
		SOAPEnvelope envelope = message.getSOAPPart().getEnvelope();
		Name helloResponseName = envelope.createName("HelloResponse", PREFIX, NAMESPACE_URI);
		Iterator childElements = message.getSOAPBody().getChildElements(helloResponseName);
		SOAPBodyElement helloResponseElement = (SOAPBodyElement) childElements.next();
		String value = helloResponseElement.getTextContent();
		System.out.println("Hello Response [" + value + "]");
	}

	public static void main(String[] args) throws Exception {
		String url = "http://localhost:8080/springws";
		HelloWebServiceClient helloClient = new HelloWebServiceClient(url);
		helloClient.callWebService();
	}
}
   

几点看法:

1, 从上面代码可以看出, 比较麻烦的部分就是客户端和服务端对xml处理, 当然一部分原因是由于选择了JDK自带的xml处理器. 在实际运用中可以考虑xml的绑定工具, jibx, castor等等.那么可能的EndPoint实现就只需要实现类似下面的方法:

 

protected HelloResponse invokeInternal(HelloRequest request);
 

2, 看看wsdl的访问方式, .wsdl结尾, 而不是?wsdl, 看起来总是不爽, 看了一下源代码,没有显式改变的方法, 看样子只能自己扩展了.而且上例子中还可以以http://localhost:8080/springws/abcdx/hello.wsdl得到wsdl, 哎...

3, 对于客户端, 直接用HttpClient, post到服务端.

 

前行的路标:

1, 毫无疑问, Spring总为你想的很全, SpringMVC提供的那么多的Controller就可以看出来.这次也不例外,jibx, castor, xmlBeans, jaxb, xstream全给你准备了

2, EndPointMapping也提供了很多选择,包括method, 还有注解的方式

 

这只是对Spring Web Service学习的一个过程, 有兴趣的可以一起交流一下!后面将根据官方提供的文档来学习一下它所提供的各种功能以及分析一下它的整个流程.

顺便推荐一首歌, 小刚的<<空心>>.

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值