努力解决这个问题;我有一个(Tomcat6 'Context.xml')默认文档,本质上是这样的:
<Context>
<WatchedResource>WEB-INF/web.xml</WatchedResource>
</Context>
我想添加“资源”和“环境”作为最外层 Context 节点的子节点;所以我最终得到:
<Context>
<WatchedResource>WEB-INF/web.xml</WatchedResource>
<Resource name="abc"[...]/>
<Environment name="xyz"[...]/>
</Context>
使用 XSLT 1.0。
(我也想避免假设节点“WatchedResource”存在于文档中。)