在許多xml示例中,我看到很多甚至不使用xml的nameschemas,如下面的示例中我們已將nameschemas定義爲xsi
,aop
和一個默認 名稱空間。如果我們不使用它們來定義它們的目的。沒有附加XML,因爲它相當大。XML命名空間和配置屬性?
第二個問題是: - 假設我們使用這個nameschemas ..我們通常與一些網絡地址 像http://someAdddress//
定義namechemas和schemalocation
值。如果我們用ABC或其他任意值來定義它們會怎麼樣?它會有所不同嗎?我們從這些網址獲得的任何 處理?
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:aop="http://www.springframework.org/schema/aop"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/
schema/beans/spring-beans-2.0.xsd http://www.springframework.org/schema/aop http://www.springframework.org/schema
/aop/spring-aop-2.0.xsd">
另一個問題是,我們已經定義了schemalocation
爲XSI命名空間不僅沒有AOP的命名空間。爲什麼這樣?
最後一個問題是我們可以定義命名空間xsi1
而不是xsi
?它是否使任何im
非常感謝邁克爾。第二個問題是什麼呢? - 假設我們使用這個nameschemas ..我們通常用http:// someAdddress //這樣的網址來定義namechemas和schemalocation的值。如果我們用ABC或其他任意值來定義它們會怎麼樣?它會有所不同嗎?我們是否通過這些網址進行處理? –