加速 IReport、Windows

发布于 2025-01-06 04:34:00 字数 411 浏览 0 评论 0原文

我在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

浮世清欢 2025-01-13 04:34:00

要设置的环境变量是 MAVEN_OPTS,例如 MAVEN_OPTS=-Xmx1024m。仅当您将编译器插件设置为将 javac 分叉到新的 JVM 时,pom 中的 maxmem 配置才适用。否则,该插件将在与 Maven 相同的 VM 内运行,从而在通过 MAVEN_OPTS 通过命令行传递的内存中运行。

要在 Windows 7 下设置 MAVEN_OPTS:

  1. 右键单击我的电脑,然后选择属性
  2. 单击系统属性左侧导航栏中的高级系统设置链接显示高级系统属性
  3. 转到高级选项卡,然后单击位于底部的环境变量按钮这高级系统属性配置窗口
  4. 创建用户变量,将变量名称设置为 MAVEN_OPTS 并设置变量值-Xmx1024m (或更多)

打开一个新的命令窗口并运行 mvn

The environment variable to set is MAVEN_OPTS, for example MAVEN_OPTS=-Xmx1024m. The maxmem configuration in the pom only applies when you set the compiler plugin to fork javac 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 the MAVEN_OPTS.

To set MAVEN_OPTS under Windows 7:

  1. Right click on My Computer and select Properties
  2. Click the Advanced System Settings link located in the left navigation of System Properties to display the Advanced System Properties
  3. Go to the Advanced tab and click the Environment Variables button located at the bottom of the Advanced System Properties configuration window
  4. Create a New user variable, set the Variable name to MAVEN_OPTS and set the Variable value to -Xmx1024m (or more)

Open a new command window and run mvn.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文