2

我想使用 Java 的预定义方法 java.util.UUID:randomUUID()代替 046b6c7f-0b8a-43b9-b35d-6489e6daee91CN,但是当我在我的策略中使用此代码时,它会 com\.novell\.xsl\.extensions\.JavaObject@4c7261af代替 CN。

那么我该如何解决这个问题呢?

这是我的政策:

<do-set-local-variable name="id1">
    <arg-string>
        <token-xpath expression="java.util.UUID:randomUUID()"/>
    </arg-string>
</do-set-local-variable>
4

2 回答 2

1

尝试使用 String.valueOf(id) 代替 CN,其中 id 是生成的随机 UUID。

问候

于 2015-06-03T06:27:15.863 回答
0

您需要使用 xpath string() 函数将 UUID 对象转换为字符串:

<policy xmlns:juuid="http://www.novell.com/nxsl/java/java.util.UUID">
    <rule>
    <description>set lv</description>
    <conditions>
        <and/>
    </conditions>
    <actions>
        <do-set-local-variable name="uuid" scope="policy">
            <arg-string>
                <token-xpath expression="string(juuid:randomUUID())"/>
            </arg-string>
        </do-set-local-variable>
    </actions>
</rule>
</policy>
于 2018-10-31T11:21:58.530 回答