前者においてスプリングXML構成:豆:で一方豆
<beans:beans xmlns="http://www.springframework.org/schema/security"
xmlns:beans="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-4.2.xsd
http://www.springframework.org/schema/security
http://www.springframework.org/schema/security/spring-security-4.1.xsd">
と
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:security="http://www.springframework.org/schema/security"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/security
http://www.springframework.org/schema/security/spring-security.xsd">
の違いは何である対豆は、セキュリティが
<http auto-config="true">
<intercept-url pattern="/login" access="permitAll()" />
</http>
として構成されています後者は次のように構成されます
<security:http auto-config="true">
<security:intercept-url pattern="/login" access="permitAll()" />
</security:http>
2つのスキーマ形式の機能上の違いはわかりません。また、誰かがpprefereableまたはそれぞれの畏敬の念を払うように助言することができますか?
[XML名前空間](http://www.w3schools.com/xml/xml_namespaces.asp)を参照してください。最初のスニペットでは、* security *名前空間が基本名前空間として使用されている可能性が最も高いです。後の* beans *のネームスペースはベースネームスペースとして使用されます –
ありがとう、それは便利なポインタです。 – Jake