Hi Beppo,
Given that this is a font issue in graph and that it is fixed with Oracle JDK, it may be:
- an issue with fonts configuration in AdoptOpenJDK for your OS
- or an issue with a missing font in AdoptOpenJDK (Oracle JDK contains a licensed Lucinda font for example which AdoptOpenJDK can't have alike)
- or an issue with fonts configuration or missing fonts in your OS (the JDK fallbacks to the OS)
For example, when having no graph in Docker with alpine image or other, it is often fixed by installing fontconfig and DejaVu fonts in the OS, because they are not in the alpine image:
apk --update add \
fontconfig \
ttf-dejavu
Another example for CentOS: yum install dejavu-sans-fonts.noarch dejavu-sans-mono-fonts.noarch
Of course, that's if you want to switch back to AdoptOpenJDK.
bye,
Emeric