//普通spring配置文件模板
1 <?xml version="1.0" encoding="UTF-8" ?> 2 <beans xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 3 xmlns="http://www.springframework.org/schema/beans" 4 xsi:schemaLocation="http://www.springframework.org/schema/beans 5 http://www.springframework.org/schema/beans/spring-beans-3.0.xsd"> 6 7 </beans>
1 //添加註解後的模板格式 2 <beans xmlns="http://www.springframework.org/schema/beans" 3 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 4 xmlns:aop="http://www.springframework.org/schema/aop" 5 xmlns:tx="http://www.springframework.org/schema/tx" 6 xmlns:context="http://www.springframework.org/schema/context" 7 xmlns:mvc="http://www.springframework.org/schema/mvc" 8 xmlns:task="http://www.springframework.org/schema/task" 9 xsi:schemaLocation=" 10 http://www.springframework.org/schema/beans 11 http://www.springframework.org/schema/beans/spring-beans-3.1.xsd 12 http://www.springframework.org/schema/tx 13 http://www.springframework.org/schema/tx/spring-tx-3.1.xsd 14 http://www.springframework.org/schema/aop 15 http://www.springframework.org/schema/aop/spring-aop-3.1.xsd 16 http://www.springframework.org/schema/context 17 http://www.springframework.org/schema/context/spring-context-3.1.xsd 18 http://www.springframework.org/schema/mvc 19 http://www.springframework.org/schema/mvc/spring-mvc-3.1.xsd 20 http://www.springframework.org/schema/task 21 http://www.springframework.org/schema/task/spring-task-3.1.xsd">
1 xmlns="http://www.springframework.org/schema/beans" 2 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
這是spring配置文件必須的部分。
第1行:聲明xml文件默認的命名空間,表示未使用其餘命名空間的全部標籤的默認命名空間。<bean id="" ></bean>默認命名空間,不須要加前綴<bean:bean id="">.
第2行:聲明XML Schema 實例,聲明後就可使用 schemaLocation 屬性了。
1 xmlns:aop="http://www.springframework.org/schema/aop"
這個就是spring配置文件裏面須要使用到aop的標籤,聲明前綴爲aop的命名空間,後面的URL用於標示命名空間的地址不會被解析器用於查找信息。其唯一的做用是賦予命名空間一個唯一的名稱。當命名空間被定義在元素的開始標籤中時,全部帶有相同前綴的子元素都會與同一個命名空間相關聯。而後其餘好比context(針對組件標籤)、MVC(針對mvc標籤)、tx(針對事務標籤)都同樣的意思。html
1 xsi:schemaLaction部分: 2 http://www.springframework.org/schema/beans 3 http://www.springframework.org/schema/beans/spring-beans-3.1.xsd
是爲上面配置的命名空間指定xsd規範文件,這樣你在進行下面具體配置的時候就會根據這些xsd規範文件給出相應的提示,好比說每一個標籤是怎麼寫的,都有些什麼屬性是均可以智能提示的,以防配置中出錯而不太容易排查,在啓動服務的時候也會根據xsd規範對配置進行校驗。可是這裏須要爲你上面xmlns裏面配置的mvc、aop、tx等都配置上xsd規範文件。spring
------------------------------------------------------------------------------------------------------spring-mvc
【xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd】mvc
指定了具體版本,本身寫的時候怎麼知道用哪一個版本?spa
在每一個xsi:schemaLocation屬性中,都是一個具備指定版本號的xsd文件,而對於沒有加版本號的問題,是因爲使用了默認值,實質上這個默認值是有一個具體的版本號的。固然,你也可使用具體的版本號。code
而對於這些xsd文件的路徑查找的方法,能夠定位到每個jar包去找,好比使用了4.1.4版本beans的jar包,那麼能夠經過Eclipse打開spring-beans-4.1.4.RELEASE.jar文件,並打開META-INF/spring.schemas文件,以下所示:xml
能夠看出,默認的地址上也是制定了具體的版本號的,那麼根據後面的地址打開org/springframework/beans/factory/xml目錄,以下所示:htm
能夠看出最後會來這裏定位xsd文件,從而實現標籤的提示。blog
總結:事務
XML Schema命名空間避免命名衝突,就像Java中的package同樣,將不一樣做用的標籤分門別類(好比Spring中的tx命名空間針對事務類的標籤,context命名空間針對組件的標籤)。
參考:
https://www.cnblogs.com/EasonJim/p/6880329.html