我想读取我的 xml 文件中的根元素。当我从 XPath 读取它时
"beans/bean/......"
,它工作正常。XML 输入文件开始:
<?xml version="1.0" encoding="UTF-8"?>
<!-- The file defines all the configurations of the SemanticServer -->
<beans>
<bean class="org.spr
但是当我用作根元素时
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="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-3.0.xsd">
而不是<beans>
它不起作用。
当根元素为空<beans>
而不是 <beans xmlns="http
......
谢谢!