具有标签列表时用于更新xml文件的Ant任务

问题描述 投票:1回答:2

我有一个带有一组上下文参数的XML文件。

<web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee"   version="3.1">      
    <context-param>
        <param-name>deployment.type</param-name>
        <param-value>main</param-value>
    </context-param>        
    <context-param>
        <param-name>csrf.protection.active</param-name>
        <param-value>false</param-value>
    </context-param>           
</web-app>

我想更新的参数值csrf.protection.active

我找到了这个蚂蚁目标。

<target name="update-csrf-value">
    <xmltask source="${dist.dir}/docker/WEB-INF/web.xml" dest="${dist.dir}/docker/WEB-INF/web.xml" report="true">
        <replace path="/:web-app/:context-param/:param-value/text()" withText="new text"/>
    </xmltask>
</target>

但是,所有我的参数值都会更改。如何更改特定键的值?

ant target maven-ant-tasks
2个回答
1
投票

找到了解决方法。我用正则表达式替换了整个标签。

  <target name="update-csrf-value">
    <replaceregexp file="${dist.dir}/docker/WEB-INF/web.xml"
            match="&lt;param-name&gt;csrf.protection.active&lt;/param-name&gt;${line.separator}(\s*)&lt;param-value&gt;([a-z]+)&lt;/param-value&gt;"
            replace="&lt;param-name&gt;csrf.protection.active&lt;/param-name&gt;${line.separator}\1&lt;param-value&gt;false&lt;/param-value&gt;"/>
   </target>

0
投票

尝试使用正则表达式解析/编辑XML通常不是一个好主意。您要做的就是修复XP​​ath。以下代码将只修改具有同级param-value节点且包含文本“ deployment.type”的param-name节点:

    <xmltask source="web.xml" dest="web2.xml" report="true">
        <replace path="/:web-app/:context-param/:param-name[text() = 'deployment.type']/../:param-value/text()" withText="new text"/>
    </xmltask>
© www.soinside.com 2019 - 2024. All rights reserved.