XML 命名空间如何在没有工作网络连接的情况下工作?
2022-09-02 09:05:39
<?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"
xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/aop
http://www.springframework.org/schema/aop/spring-aop-2.0.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-2.1.xsd">
<context:component-scan
base-package="com.springinaction.chapter01.knight" />
</beans>
上面的示例显示了具有多个命名空间的 XML 文件的示例。这些命名空间的目的是什么,最重要的是,为什么即使没有互联网连接,它们也能工作?
我认为以 开头的第二位包含用于验证 XML 文档结构的 XML 架构文件。如果我在不在网络上的计算机上运行使用此配置文件的应用程序,为什么这些仍然有效?URL 是否以某种方式成为 JAR 文件的别名?xsi:schemaLocation