如何增加 sbt 在 Windows 下运行的 JVM 堆大小?
Posted
技术标签:
【中文标题】如何增加 sbt 在 Windows 下运行的 JVM 堆大小?【英文标题】:How can I increase the JVM heapsize for sbt run under Windows? 【发布时间】:2016-03-06 10:18:18 【问题描述】:我已经查看了相关的答案,但它们都是 Unix 并且都是完整的配置。
目前,如果我需要更多堆,我会从批处理文件中运行我的应用程序:
call scala -J-Xmx1200m -cp target\scala-2.11\classes Start
我可以对 sbt run 做同样的事情,使用轻量级配置吗?
【问题讨论】:
***.com/questions/1441373/… 【参考方案1】:根据 Ardi Goxhaj 的评论,批处理文件有效:
set JAVA_OPTS=-Xmx1200m
call sbt run
【讨论】:
以上是关于如何增加 sbt 在 Windows 下运行的 JVM 堆大小?的主要内容,如果未能解决你的问题,请参考以下文章
如何在代理后面使用 sbt - 在 Windows 7 中?