gpt4 book ai didi

java - 如何为 scalatest-maven-plugin 设置 PermSize?

转载 作者:搜寻专家 更新时间:2023-11-01 03:20:21 25 4
gpt4 key购买 nike

我们正在使用 scalatest-maven-plugin 运行一些 spark 测试,默认的 perm 大小在 80M 左右,这是不够的,所以我们经常得到“OutOfMemoryError: PermGen”。

我试图给它一个更大的尺寸,但没有找到如何配置它

最佳答案

您可以使用此处记录的 argLine 配置参数 http://www.scalatest.org/user_guide/using_the_scalatest_maven_plugin

<plugin>
<groupId>org.scalatest</groupId>
<artifactId>scalatest-maven-plugin</artifactId>
<version>1.0</version>
<configuration>
<reportsDirectory>${project.build.directory}/surefire-reports</reportsDirectory>
<junitxml>.</junitxml>
<filereports>WDF TestSuite.txt</filereports>
<argLine>-XX:MaxPermSize=128m</argLine>
</configuration>
<executions>
<execution>
<id>test</id>
<goals>
<goal>test</goal>
</goals>
</execution>
</executions>
</plugin>

关于java - 如何为 scalatest-maven-plugin 设置 PermSize?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32246485/

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