程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> JAVA編程 >> JAVA綜合教程 >> Spring 一二事(3),spring

Spring 一二事(3),spring

編輯:JAVA綜合教程

Spring 一二事(3),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

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved