SpringBeanRouter分析

SpringBeanRouter 是一个非常有用的类。


SpringBeanRouter 继承了Spring的 ApplicationContextAware 和 BeanFactoryPostProcessor 接口。


一、首先要说明的是,Restlet中,所有的资源也就是url绑定的可以访问的类都是继承了ServerResource类。

二、SpringBeanRouter 继承的 ApplicationContextAware 接口,可以将Spring的上下文应用环境 ApplicationContext 传给 SpringBeanRouter 。

三、SpringBeanRouter 继承的 BeanFactoryPostProcessor 接口,可以在bean构造的之前调用 postProcessBeanFactory 方法。

四、SpringBeanRouter 中的 postProcessBeanFactory ()方法

1、将Spring中是 ServerResource 的子类所有bean都找出来,如果bean name是以 / 开始的,就加到资源查找路径上。

2、将Spring中是 Restlet 的子类所有bean都找出来,如果bean name是以 / 开始的,就加到资源查找路径上。

3、通过SpringBeanRouter 的 Attachments 属性配置的bean。


通常情况下,采用继承 ServerResource 实现与业务相关的 Resource 。

你可能感兴趣的:(spring,bean,url)