RESTful Web Services in Spring 3(下)

上一篇我主要发了RESTful Web Services in Spring 3的服务端代码,这里我准备写客户端的代码。

 

上篇得连接地址为:http://yangjizhong.iteye.com/blog/600540

 

 

开始本篇了:

 

注:附件里有源码,下载即可,依赖包请在spring网获得,谢谢。

 

applicationContext.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:p="http://www.springframework.org/schema/p"
	xmlns:context="http://www.springframework.org/schema/context"
	xmlns:oxm="http://www.springframework.org/schema/oxm"
	xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd 
			http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-2.5.xsd 
			http://www.springframework.org/schema/oxm http://www.springframework.org/schema/oxm/spring-oxm-3.0.xsd">

	<context:component-scan base-package="com.informit.articleservice" />

	<bean id="restTemplate" class="org.springframework.web.client.RestTemplate">
		<property name="messageConverters">
			<list>
				<!-- We only have one message converter for the RestTemplate, namely the XStream Marshller -->
				<bean class="org.springframework.http.converter.xml.MarshallingHttpMessageConverter">
					<constructor-arg>
						<bean class="org.springframework.oxm.xstream.XStreamMarshaller">
							
							<!-- Tell XStream to find the alias names in the following classes -->
							<property name="annotatedClasses">
								<list>
									<value>com.informit.articleservice.model.Article</value>							
									<value>com.informit.articleservice.model.Category</value>							
								</list>						
							</property>
						</bean>
					</constructor-arg>
				</bean>
			</list>
		</property>
	</bean>

</beans>

 

 

applicationContext.xml声明了一个bean,名restTemplate,implemented by org.springframework.web.client.RestTemplate,RestTemplate 类提供了一个setter来声明message converters,在这个属性我们提供一个包含一个简单bean的list:a MarshallingHttpMessageConverter,这是你的实体信息声明的地方

 

restTemplate bean声明后,ArticleClient 使用了restTemplate来调取ArticleService:

 

package com.informit.articleservice.client;

import java.util.HashMap;
import java.util.List;
import java.util.Map;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Component;
import org.springframework.web.client.RestTemplate;

import com.informit.articleservice.model.Article;
import com.informit.articleservice.model.Category;

@Component("articleClient")
public class ArticleClient {

	@Autowired
	protected RestTemplate restTemplate;

	private final static String articleServiceUrl = "http://localhost:8082/articleservice/";

	@SuppressWarnings("unchecked")
	public List<Category> getCategories() {
		return restTemplate.getForObject(articleServiceUrl + "article", List.class);
	}

	public Article getArticle(String category, int id) {
		return restTemplate.getForObject(articleServiceUrl + "article/{category}/{id}", Article.class, category, id);
	}

	@SuppressWarnings("unchecked")
	public void delCategories() {
		restTemplate.delete(articleServiceUrl + "article");
	}

	@SuppressWarnings("unchecked")
	public List<Category> postCategories() {
		Map<String, String> params = new HashMap<String, String>();
		params.put("name", "jizhong");
		return restTemplate.postForObject(articleServiceUrl + "addarticle/{name}", null, List.class, params);

	}

}

 

 

在这里RestTemplate是自动加载的(auto-wired),你会注意到ArticleClient被加上了@Component annotation而且applicationContext.xml自动扫描com.informit.articleservice包或他的子包,因此当ArticleClient通过application context被loaded时,他会自动作为一个接口来实现RestTemplate实例

 

RestTemplate的相关使用的方法在文档中是这样写的:

 

delete(): deletes an object hosted by the web service
getForObject(): executes the HTTP GET command and returns the requested object
headForHeaders(): executes the HTTP HEAD command and returns the headers for the requested service
optionsForAllow(): executes the HTTP OPTIONS command and returns list of content types the the request service allows
postForLocation: executes the HTTP POST command and returns the location header value
postForObject(): executes the HTTP POST command and returns the object at the specified URL
put(): executes the HTTP PUT command and sends the specified object to the web service
execute(): provides fine grained control if one of the aforementioned methods does not suit your needs

 

接下来列出测试类:

 

package com.informit.resttemplateexample;

import java.util.List;

import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;

import com.informit.articleservice.client.ArticleClient;
import com.informit.articleservice.model.Category;

public class RestTemplateExample {
	public static void main(String[] args) {
		ApplicationContext applicationContext = new ClassPathXmlApplicationContext("applicationContext.xml");
		ArticleClient articleClient = applicationContext.getBean("articleClient", ArticleClient.class);

		//get operate
		//		Article article = articleClient.getArticle("fun", 1);
		//		System.out.println("Article: " + article.getBody());
		//
		//		List<Category> categories = articleClient.getCategories();
		//		for (Category category : categories) {
		//			System.out.println("Category: " + category);
		//		}

		//delete operate
		//articleClient.delCategories();

		//post operate
		List<Category> categories = articleClient.postCategories();

	}
}

 

 

 

好了,然后本地跑一下就可以了,当然前提是一定把服务端跑起来哦....

 

注:详细代码在附件,JAR包还是自己下哈,终于写完了,有点累,但是有收获。

 

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值