我经常处理一些问题——架构位置。有时您必须编写配置 XML 文件或任何其他包含大量链接的 XML 文件,如下所示:
<?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/aop
http://www.springframework.org/schema/aop/spring-aop-3.2.xsd
http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd">
每次我必须处理一些乐器时,我都会想:我应该在哪里寻找它?我怎么知道应该在我的 XML 标头中使用哪些链接和选项?
请告诉我,您如何找出需要放在那里的东西以及您通常在哪里寻找它?
如果需要在同一个 XML 中描述另一种技术的使用,您如何知道如何准确地修改标头?