Spring中ref local=""與ref bean=""的區別
<reflocal="xx"/>
用"local"屬性指定目標其實是指向同一檔案內對應"id"屬性值為此"local"值的索引
"local"屬性的值必須和目標bean的id屬性相同。如果同一檔案內沒有匹配的元素,xml解析器將提示錯誤。同樣,如果目標在同一XML檔案內,使用"local"變數是最好的選擇(為了儘可能早地知道錯誤)
<refbean="xx"/>
用"bean"屬性指定目標bean是最常規的形式,這允許建立索引到任何同一個容器內的bean(無論是否在同一XML檔案中)或者父級的容器內的bean。"bean"屬性的值可以和目標bean的"id"屬性相同,也可以和目標bean的"name"屬性內的一個值相同
轉載自http://blog.sina.com.cn/s/blog_70aaaa7d0100pfd1.html
相關文章
- Vue 中ref()與 reactive() 的區別VueReact
- Rust 中 *、&、mut、&mut、ref、ref mut 的用法和區別Rust
- git pull報“unable to update local ref”解決方案Git
- ref
- 認真總結Vue3中ref與reactive區別和isRef與isReactive 型別判斷VueReact型別
- out關鍵字和ref關鍵字的區別
- vue中的 ref 和 $refsVue
- React ref的用法React
- Vue3 中的各種 refVue
- std::bind與std::ref, why and how
- vue --ref用法Vue
- ref屬性
- ref和reactiveReact
- Vue 學習 Ref shallowRef triggerRef customRef (Ref 和 Reactive的對比)VueReact
- 關於React的refReact
- React ref 的前世今生React
- React ref的基本使用React
- vue3+ts中ref與reactive指定型別實現示例詳解VueReact型別
- examples for oracle ref cursorsOracle
- 使用 ref 引用值
- Vue 標籤中的ref屬性和refsVue
- Difference between cursor and a ref cursor
- 27、EJB與JAVA BEAN的區別?JavaBean
- vue3 子元件 ref ts型別定義Vue元件型別
- spring中的FactoryBean與ObjectFactory的區別SpringBeanObject
- python ref counting based garbage collectionPython
- React Ref 其實是這樣的React
- fastjson字串轉JSON的$ref問題ASTJSON字串
- 【FastJSON】解決FastJson中“$ref 迴圈引用”的問題ASTJSON
- Vue3中的Ref與Reactive:深入理解響應式程式設計VueReact程式設計
- Vue.js-11:第十一章 - Vue 中 ref 的使用Vue.js
- out,ref,params引數傳遞
- 組合API-ref屬性API
- 組合API-ref函式API函式
- vue3 第二天vue響應式原理以及ref和reactive區別VueReact
- petite-vue原始碼剖析-ref的工作原理Vue原始碼
- fastjson:物件轉化成json出現$refASTJSON物件
- vue3 ref響應式引用Vue