我正在使用 Apache FOP(v 2.3 和测试 v 2.5)。我最近从 Oracle JDK 8 升级到了 Oracle JDK 11。我在 Oracle Linux(它是 RedHat 衍生产品)上使用 JBoss EAP 7.2。使用 JDK 8 时一切正常,但只是升级到 JDK 11 导致我的用于 XML -> PDF 和 XML -> PNG 的 FOP XSLT 创建以下堆栈跟踪(FOP 版本无关紧要,因为产生了相同的错误)。
Caused by: java.lang.NullPointerException
at java.desktop/sun.awt.FontConfiguration.getVersion(FontConfiguration.java:1262)
at java.desktop/sun.awt.FontConfiguration.readFontConfigFile(FontConfiguration.java:225)
at java.desktop/sun.awt.FontConfiguration.init(FontConfiguration.java:107)
at java.desktop/sun.awt.X11FontManager.createFontConfiguration(X11FontManager.java:719)
我的字体是 Google/RedHat 的 LiberationSans,我已将它们放在文件系统上并配置在名为 LiberationSans.xconf 的文件中。我已确保文件可全局读取 (775) 并且归运行 JBoss 实例的用户所有。
<?xml version="1.0"?>
<!-- LiberationSans -->
<fop version="1.0">
<renderers>
<renderer mime="application/pdf">
<fonts>
<font embed-url="/apps/fonts/LiberationSans-Regular.ttf" embedding-mode="subset">
<font-triplet name="LiberationSans" style="normal" weight="normal"/>
</font>
<font embed-url="/apps/fonts/LiberationSans-Bold.ttf" embedding-mode="subset">
<font-triplet name="LiberationSans" style="normal" weight="bold"/>
</font>
</fonts>
</renderer>
<renderer mime="image/png">
<fonts>
<font embed-url="/apps/fonts/LiberationSans-Regular.ttf" embedding-mode="subset">
<font-triplet name="LiberationSans" style="normal" weight="normal"/>
</font>
<font embed-url="/apps/fonts/LiberationSans-Bold.ttf" kerning="yes" embedding-mode="subset">
<font-triplet name="LiberationSans" style="normal" weight="bold"/>
</font>
</fonts>
</renderer>
</renderers>
</fop>
在我的本地 Windows 机器上一切正常,但我的部署是通过 Eclipse/JBoss 插件进行的,所以可能会有一些问题。Linux 服务器上的部署是通过 jboss-cli 进行的。
请让我知道我是否可以提供其他任何可能有帮助的东西。如果我们必须从 FOP 迁移出去,我希望这是最后的手段。