bean与spring容器的关系
bean配置信息定义了bean的实现及依赖关系,spring容器根据各种形式的bean配置信息在容器内部建立bean定义注册表,然后根据注册表加载、实例化bean,并建立bean和bean的依赖关系,最后将这些准备就绪的bean放到bean缓存池中,以供外层的应用程序进行调用。
本文将给大家详细介绍关于在spring中使用编码方式动态配置bean的相关内容,分享出来供大家参考学习,下面话不多说了,来一起看看详细的介绍吧。
1 defaultlistablebeanfactory
defaultlistablebeanfactory 实现了 configurablelistablebeanfactory 接口,可以通过这个类来动态注入 bean。为了保证注入的 bean 也能被 aop 增强,我们需要实现 bean 的工厂后置处理器接口 beanfactorypostprocessor。
需要动态注入的 bean:
1
2
3
4
5
6
7
8
9
10
|
public class bookservice {
bookdao bookdao;
public void setbookdao(bookdao bookdao) {
this .bookdao = bookdao;
}
public bookdao getbookdao() {
return bookdao;
}
}
|
实现 bean 的工厂后置处理器接口:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
@component
public class bookservicefactorybean implements beanfactorypostprocessor {
public void postprocessbeanfactory(configurablelistablebeanfactory beanfactory) throws beansexception {
defaultlistablebeanfactory factory = (defaultlistablebeanfactory) beanfactory;
//bean 定义
beandefinitionbuilder builder=beandefinitionbuilder.genericbeandefinition
(bookservice. class );
//设置属性
builder.addpropertyreference( "bookdao" , "bookdao" );
//注册 bean 定义
factory.registerbeandefinition( "bookservice1" ,builder.getrawbeandefinition());
//注册 bean 实例
factory.registersingleton( "bookservice2" , new net.deniro.spring4.dynamic.bookservice());
}
}
|
这里假设 bookdao 已注入容器(xml 或 注解方式)。
在此,我们既可以注册 bean 的定义,也可以直接注册 bean 的实例。
配置:
1
2
|
<context:component-scan base- package = "net.deniro.spring4.dynamic"
/>
|
单元测试:
1
2
3
4
5
6
|
bookservice bookservice1 = (bookservice) context.getbean( "bookservice1" );
assertnotnull(bookservice1);
assertnotnull(bookservice1.getbookdao());
bookservice bookservice2 = (bookservice) context.getbean( "bookservice2" );
assertnotnull(bookservice2);
|
2 自定义标签
为了更好地封装组件,增强组件的易用性,我们会将组件定义为标签。
自定义标签步骤为:
- 采用 xsd 描述自定义标签的元素属性。
- 编写 bean 定义的解析器。
- 注册自定义标签的解析器。
- 绑定命名空间解析器。
在 resources 中的 schema 文件夹下创建 bookservice.xsd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<?xml version= "1.0" encoding= "utf-8" ?>
<xsd:schema xmlns= "http://www.deniro.net/schema/service"
xmlns:xsd= "http://www.w3.org/2001/xmlschema"
xmlns:beans= "http://www.springframework.org/schema/beans"
targetnamespace= "http://www.deniro.net/schema/service"
elementformdefault= "qualified"
attributeformdefault= "unqualified"
>
<!-- 导入 beans 命名空间-->
<xsd: import namespace= "http://www.springframework.org/schema/beans" />
<!-- 定义 book-service 标签-->
<xsd:element name= "book-service" >
<xsd:complextype>
<xsd:complexcontent>
<xsd:extension base= "beans:identifiedtype" >
<!-- 定义 dao 属性-->
<xsd:attribute name= "dao" type= "xsd:string" use= "required" />
</xsd:extension>
</xsd:complexcontent>
</xsd:complextype>
</xsd:element>
</xsd:schema>
|
接着定义服务标签解析器:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
public class bookservicedefinitionparser implements beandefinitionparser {
public beandefinition parse(element element, parsercontext parsercontext) {
//创建 bean 定义
beandefinitionbuilder builder=beandefinitionbuilder.genericbeandefinition
(bookservice. class );
//注入自定义的标签属性
string dao=element.getattribute( "dao" );
builder.addpropertyreference( "bookdao" ,dao);
//注册 bean 定义
parsercontext.registerbeancomponent( new beancomponentdefinition(builder
.getrawbeandefinition(), "bookservice" ));
return null ;
}
}
|
然后把刚刚定义好的解析器注册到命名空间:
1
2
3
4
5
|
public class bookservicenamespacehandler extends namespacehandlersupport {
public void init() {
registerbeandefinitionparser( "book-service" , new bookservicedefinitionparser());
}
}
|
接着在 resources 中创建 meta-inf 文件夹,并新建 spring.schemas 与 spring.handlers,这两个文件分别用于配置自定义标签的文档结构文件路径以及解析自定义命名空间的解析器。
文件路径
spring.handlers:
http\://www.deniro.net/schema/service=net.deniro.spring4.dynamic.bookservicenamespacehandler
spring.schemas:
http\://www.deniro.net/schema/service.xsd=schema/bookservice.xsd
注意: xsd 文件必须放在 resources 的子孙目录下。
引用自定义标签:
1
2
3
4
5
6
7
8
9
10
|
<?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:me= "http://www.deniro.net/schema/service"
xsi:schemalocation="http: //www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
http: //www.deniro.net/schema/service http://www.deniro.net/schema/service.xsd
">
<bean id= "bookdao" class = "net.deniro.spring4.dynamic.bookdao" />
<me:book-service dao= "bookdao" />
</beans>
|
这里,我们在头部引用了自定义标签,并命名为 “me”,然后就可以使用它咯o(∩_∩)o~
总结
以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,如果有疑问大家可以留言交流,谢谢大家对服务器之家的支持。
原文链接:https://www.jianshu.com/p/8acc0968dd9f