当我创建一个春季项目时,我总是遇到 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 命名空间?及其架构位置?