gpt4 book ai didi

java - Ant、jvmarg、系统属性和引号

转载 作者:搜寻专家 更新时间:2023-10-30 19:42:53 25 4
gpt4 key购买 nike

我们有一个属性,其中包含要在 Ant 脚本中传递给 JVM 的一系列参数。

示例(注意第二个条目中的引号):

-Dsql.driver=oracle.jdbc.driver.OracleDriver -Dapp.datasource-properties=URL='jdbc:oracle:thin:@//192.168.56.42:1521/xe':User=user:Password=password  

如果我用 echo 目标打印变量的内容,我会得到预期的结果

<echo message="${jvm.arguments}"/>

产生

-Dsql.driver=oracle.jdbc.driver.OracleDriver -Dapp.datasource-properties=URL='jdbc:oracle:thin:@//192.168.56.42:1521/xe':User=user:Password=password 

然后我将该变量用作 JVM 的参数。

例子:

<junit fork="true" forkmode="once" showoutput="true" printsummary="on">
<jvmarg
line="-XX:MaxPermSize=256m -Xms1024M ${jvm.arguments}"

引号被静默删除。 Ant 的详细输出给了我

[junit] Executing '/System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home/bin/java' with arguments:
[junit] '-XX:MaxPermSize=256m'
[junit] '-Xms1024M'
[junit] '-Dsql.driver=oracle.jdbc.driver.OracleDriver'
[junit] '-Dapp.datasource-properties=URL=jdbc:oracle:thin:@//192.168.56.42:1521/xe:User=user=password'

如何将系统属性传递给包含引号的 JVM? (单人还是双人)?

我尝试使用双引号对它们进行转义,但没有效果。

最佳答案

我使用 <jvmarg>单值

 <jvmarg value="-ea"/>
<jvmarg value="-Dapp.URL=URL=${jvmargs}"/>

然后调用下面一行...

 ant tests -Djvmargs=\'jdbc:oracle:thin:@//192.168.56.42:1521/xe\':User=user:Password=password -debug

带有 -debug 的输出包含您期望的行。

 [junit] '-ea'
[junit] '-Dapp.URL=URL='jdbc:oracle:thin:@//192.168.56.42:1521/xe':User=user:Password=password'

line旨在处理以空格分隔的参数。它可能会进行额外的解析和处理以处理带有空格的输入。我还没有检查代码。

关于java - Ant、jvmarg、系统属性和引号,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9532306/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com