在ant任务中指定jvm参数

时间:2014-07-30 14:46:21

标签: java ant jvm-arguments

我正在指定jvm参数,因为我已经离开了堆空间异常,所以为了避免我在我的ant目标中指定以下参数,如下所示..

  <junit
   printsummary="true"
   fork="yes"
   haltonfailure="false"
   failureproperty="junitsFailed"
   errorProperty="junitsFailed"
  >
   <jvmarg value=" -Xmx1024m -Duser.timezone=GMT0"/>
  </junit>

但在下面我得到以下例外..

that is the invalid parameters are specified

2 个答案:

答案 0 :(得分:7)

使用多个<jvmarg>元素:

<junit printsummary="true" fork="yes" haltonfailure="false" failureproperty="junitsFailed" errorProperty="junitsFailed">
    <jvmarg value="-Xmx1024m"/>
    <jvmarg value="-Duser.timezone=GMT0"/>
</junit>

答案 1 :(得分:1)

您可以设置ANT_OPTS参数。例如在Windows中

SET ANT_OPTS=-Xmx1024m -XX:MaxPermSize=256m

或仅使用maxmemory ant任务(http://ant.apache.org/manual/Tasks/junit.html)的junit属性:

<junit maxmemory="1024m" ...