1. 程式人生 > >spring xml配置檔案中標籤的含義

spring xml配置檔案中標籤的含義

例如在spring-config.xml檔案頭看到如下的配置:

<beans xmlns="http://www.springframework.org/schema/beans"
          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
     xmlns:mvc="http://www.springframework.org/schema/mvc"
             xmlns:context="http://www.springframework.org/schema/context"
             xsi:schemaLocation="http://www.springframework.org/schema/beans
     http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
                  http://www.springframework.org/schema/context
                  http://www.springframework.org/schema/context/spring-context-3.0.xsd
                  http://www.springframework.org/schema/mvc
                  http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd"
                  default-autowire="byName">

解釋如下:

1.<beans>:xml檔案的根節點。

2.xmlns:XML NameSpace的縮寫,因為XML檔案的標籤名稱都是自定義的,自己寫的和其他人定義的標籤很有可能會重複命名,而功能卻不一樣,所以需要加上一個namespace來區分這個xml檔案和其他的xml檔案,類似於java中的package。 

3.xmlns:xsi:指xml檔案遵守xml規範,xsi全名:xml schema instance,是指具體用到的schema資原始檔裡定義的元素所遵守的規範。即http://www.w3.org/2001/XMLSchema-instance這個檔案裡定義的元素遵守什麼標準。

4.xsi:schemaLocation:指本文件裡的xml元素所遵守的規範,這些規範都是由官方制定的,可以進入網址看版本的變動。xsd的網址還可以幫助判斷使用的程式碼是否合法。 

例如如下程式碼:

<!-- 啟用spring mvc 註解 -->
<context:annotation-config/>

<!--自動掃描-->
<context:component-scan base-package="com.icekredit.credit.controller"/>
<context:component-scan base-package="com.icekredit.credit.service.impl"/>

<!--自動配置註解對映器和介面卡-->
<mvc:annotation-driven />
<mvc:default-servlet-handler />
<mvc:resources location="/static/" mapping="/static/**" />

程式碼裡面用到了< mvc >的標籤就要先引入:

xmlns:mvc="http://www.springframework.org/schema/mvc"

然後需要遵守的程式碼規範有:http://www.springframework.org/schema/mvc

                                               http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd

 

本文參考作者:MyHerux
原文地址:https://blog.csdn.net/myherux/article/details/50967342