Spring 一二事 - 别名
Posted 风间影月の技术小站
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Spring 一二事 - 别名相关的知识,希望对你有一定的参考价值。
别名就是可以通过另外一个名字来访问如下,已有bean:helloWorld3,那么定义别名(alias )后,就能使用“abc”来访问
1 <bean id="helloWorld3" factory-bean="helloWorldFactory" 2 factory-method="getInstance"></bean> 3 4 <!-- 别名 name 属性值要和 id 一致 --> 5 <alias name="helloWorld3" alias="abc" /> 6 <alias name="helloWorld3" alias="测试" />
HelloWorld hello = (HelloWorld)context.getBean("abc");
github地址:https://github.com/leechenxiang/maven-spring001-helloworld
以上是关于Spring 一二事 - 别名的主要内容,如果未能解决你的问题,请参考以下文章