春豆 DTD 和 XMLNS
当我创建一个春季项目时,我总是遇到XLMNS的问题。究竟什么是 XMLNS?这些到底是什么?
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:p="http://www.springframework.org/schema/p"
xmlns:aop="http://www.springframework.org/schema/aop" xmlns:tx="http://www.springframework.org/schema/tx"
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/aop http://www.springframework.org/schema/aop/spring-aop-3.0.xsd
http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.0.xsd
http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd"
我在哪里可以获得这些的参考资料?(xmlns:xsi 和 xsi:schemeLocation 的资源。有没有这些的在线手册?我似乎找不到它们。
注意当我说参考文献时,我的意思是他们正确的网址
更新
在哪里可以看到Spring Bean,Spring Transactions,Spring MVC等的XML命名空间?及其架构位置?