SpringComponent 介绍

SpringComponent 是org.restlet.ext.spring 包中继承了 Component 的一个用于在spring环境下使用的Component子类。

SpringComponent 提供了一个 client 和多个 client、一个server和多个server,以及defaultTarget的注入接口。


为 defaultTarget 属性赋值在 Spring 环境下部署 restlet 是很关键的一步。


在配置文件中,component ---> application ----> router是对应和依赖的。


...
<bean name="component" id="component" autowire="byName" class="org.restlet.ext.spring.SpringComponent">
	<property name="defaultTarget" ref="application" />
</bean>


<bean name="application" id="application" class="org.teamlet.rest.component.ComponentApplication"> 
  <property name="inboundRoot" ref="router" />
</bean>

<bean name="router"	class="org.restlet.ext.spring.SpringBeanRouter"></bean>

SpringComponent 介绍



你可能感兴趣的:(component)