別名就是可以通過另外一個名字來訪問如下,已有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