0

我正在使用 JSF 构建一个 Web 应用程序。我正在使用 glassfish ssrver。我正在尝试使用 iText 在 PDF 上应用水印。它运行良好,但是当我尝试在超过 30MB 的 pdf 文档上应用水印时(包含超过 5500 页) ,它会抛出这个异常。

type Exception report

message

descriptionThe server encountered an internal error () that prevented it from fulfilling this request.

exception

javax.servlet.ServletException: java.lang.OutOfMemoryError: Java heap space

root cause

javax.faces.el.EvaluationException: java.lang.OutOfMemoryError: Java heap space

root cause
 java.lang.OutOfMemoryError: Java heap space

    note The full stack traces of the exception and its root causes are available in the GlassFish Server Open Source Edition 3.1.2 logs.


在搜索解决方案时,我发现通过设置程序大小,我们可以解决这个问题。
所以我把这些 VMargs -Xms6000m -Xmx6000m
在那个类的运行配置中,但没有效果。
现在我无法理解解决方案是什么?谢谢

4

0 回答 0