加速 IReport、Windows
我在 Win7 64 位上使用 IReport 4.5.0。
以前的版本也这样做。 Java版本:
java version "1.7.0_02"
Java(TM) SE Runtime Environment (build 1.7.0_02-b13)
Java HotSpot(TM) 64-Bit Server VM (build 22.0-b10, mixed mode)
iReport
在“DESIGNER”模式下速度非常慢。
选择任何项目都会将所选项目的标记延迟 10 秒到 20 秒...
使用图片(TitleBand 中的 16x16 PNG 图标)会增加这种行为。
有加快 iReport
速度的想法吗?
i´m using IReport 4.5.0 on my Win7 64Bit.
Previous Version does it also.
JavaVersion:
java version "1.7.0_02"
Java(TM) SE Runtime Environment (build 1.7.0_02-b13)
Java HotSpot(TM) 64-Bit Server VM (build 22.0-b10, mixed mode)
iReport
is horrible slow in the "DESIGNER" mode.
Selecting any Item will delay the marking of the selected item for 10Seconds up to 20seconds...
Using a Picture (f.e. 16x16 PNG Icon in TitleBand) will increase that behaviour.
Any Idea for Speed Up the iReport
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
要设置的环境变量是
MAVEN_OPTS
,例如MAVEN_OPTS=-Xmx1024m
。仅当您将编译器插件设置为将javac
分叉到新的 JVM 时,pom 中的maxmem
配置才适用。否则,该插件将在与 Maven 相同的 VM 内运行,从而在通过MAVEN_OPTS
通过命令行传递的内存中运行。要在 Windows 7 下设置 MAVEN_OPTS:
-Xmx1024m
(或更多)打开一个新的命令窗口并运行
mvn
。The environment variable to set is
MAVEN_OPTS
, for exampleMAVEN_OPTS=-Xmx1024m
. Themaxmem
configuration in the pom only applies when you set the compiler plugin to forkjavac
into a new JVM. Otherwise the plugin runs inside the same VM as Maven and thus within the memory passed on the command line via theMAVEN_OPTS
.To set MAVEN_OPTS under Windows 7:
-Xmx1024m
(or more)Open a new command window and run
mvn
.