【问题标题】:Unable to load class grails.plugins.rendering.image.ImageRenderingService Grails 4 Rendering:2.03无法加载类 grails.plugins.rendering.image.ImageRenderingService Grails 4 Rendering:2.03
【发布时间】:2026-01-21 00:30:02
【问题描述】:

我正在尝试在 grails 4 中使用插件渲染:2.0.3,但出现编译错误:

Unable to load class grails.plugins.rendering.image.ImageRenderingService

【问题讨论】:

    标签: gradle grails groovy


    【解决方案1】:

    解决方案是在 build.gradle 文件中添加缺少的类

    compile group: 'org.xhtmlrenderer', name: 'flying-saucer-core', version: '9.1.6' //class org.xhtmlrenderer.simple.Graphics2DRenderer
    compile group: 'io.github.msalaslo', name: 'flying-saucer-pdf', version: '9.1.20' //class org/xhtmlrenderer/pdf/ITextRenderer
    compile 'org.grails.plugins:rendering:2.0.3'
    

    感谢网站提供 https://jar-download.com/artifacts/org.xhtmlrenderer/flying-saucer-core/9.1.8/source-code/org/xhtmlrenderer/simple/Graphics2DRenderer.java

    【讨论】: