1

我想更改 xml 的值部分中的少数部分。在 Augeas 可以做到吗?

例如:

我想在下面的 xml 中单独更改 IP_ADDRESS。它被放置在三个地方。有可能吗?

<interfaces>
    <interface name="management">
        <inet-address value="${jboss.bind.address.management:IP_ADDRESS}"/>
    </interface>
    <interface name="public">
        <inet-address value="${jboss.bind.address:IP_ADDRESS}"/>
    </interface>
    <interface name="unsecure">
        <inet-address value="${jboss.bind.address.unsecure:IP_ADDRESS}"/>
    </interface>
</interfaces>
4

1 回答 1

1

单独使用 Augeas,这(目前)是不可能的(但可能会在我们拥有原生 Lua 支持后)。现在,您需要使用 Augeas 绑定并自己解析值。

于 2015-11-18T12:15:27.000 回答