Restlet实战(十一)结合源代码修改Restlet-Spring配置文件

上篇文章结合了Restlet的源码分析了Restlet-spring的配置文件,并提出了相关的问题,本篇将对这一问题做一个测试解答。

 

首先修改一下Spring的配置文件:

 

<bean id="restRoute" class="org.restlet.ext.spring.SpringRouter">
	<property name="attachments">
		<map>
			<entry key="/customers">
				<bean class="org.restlet.ext.spring.SpringFinder">
					<lookup-method name="createResource" bean="customersResource" />
				</bean>
			</entry>
			<entry key="/customers/{customerId}">
				<bean class="org.restlet.ext.spring.SpringFinder">
					<lookup-method name="createResource" bean="customerResource" />
				</bean>
			</entry>
			<entry key="/users">
				<bean class="com.mycompany.restlet.application.UserApplication"/>
			</entry>
		</map>
	</property>
</bean>

 

除了配置customer外,还配置了一个跟User相关的Application:

 

public class UserApplication extends Application{
	@Override
	public synchronized Restlet createRoot() {
		Router router = new Router(getContext());

		router.attach("/{userId}", UserResource.class);
		router.attach("/{userId}/orders", UserOrdersResource.class);
		return router;
	}
}

 

为了测试更加的清晰,不在Customer相关类上面做修改了,另外建立两个资源文件:UserResource和UserOrdersResource,对应的URL应该分别是:/users/{userId}和/users/{userId}/orders,第一个URL意思是根据id查询得到某个user,而第二个则是查询得到某个user对应的所有的order。

 

public class UserResource extends Resource {
	String userId;
	
	public UserResource(Context context, Request request, Response response) {
		super(context, request, response);
		userId = (String) request.getAttributes().get("userId");
		getVariants().add(new Variant(MediaType.TEXT_PLAIN));
	}
	
	@Override
	public Representation represent(Variant variant) {
		String userMsg = "current user id is " + userId;
		Representation representation = new StringRepresentation(userMsg,
				MediaType.TEXT_PLAIN);
		return representation;
	}
	
}

 

public class UserOrdersResource extends Resource {
	String userId;
	
	public UserOrdersResource(Context context, Request request, Response response) {
		super(context, request, response);
		getVariants().add(new Variant(MediaType.TEXT_PLAIN));
		userId = (String) request.getAttributes().get("userId");
	}
	
	@Override
	public Representation represent(Variant variant) {
		String userMsg = "get all orders for user whose id is: " + userId;
		Representation representation = new StringRepresentation(userMsg,
				MediaType.TEXT_PLAIN);
		return representation;
	}
}

 

需要注意的是,上面两个资源是直接attach到Application,而不是之前文章讲的那样由SpringFinder接管,所以,之前文章强调一些规则,如需要有一个无参的构造函数,一个init方法等,就不适用于上述的两个资源的定义。 

 

没有别的代码,来测试一下吧,打开浏览器,输入http://localhsot:8080/restlet/resources/users/1后,页面会显示:

 

current user id is 1

而输入http://localhost:8080/restlet/resources/users/1/orders 后,页面会显示:

 

get all orders for user whose id is: 1

 

我们接着测试,如果value是String,会怎么样:

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值