给出命令
xml ed -N x=http://java.sun.com/xml/ns/j2ee -s //x:web-app/x:security-constraint/x:auth-constraint -t elem -n role-name -v appuser WEB-INF/web.xml
但是上面的命令添加了两个名为appuser
的子节点,因为在我的xml中出现了两次"web-app/securityconstraint/authconstraint"。我只想加一个。我该怎么做?
您可以使您的xpath只匹配第一个安全约束元素:
//x:web-app/x:security-constraint[1]/x:auth-constraint