【发布时间】:2026-01-21 00:30:02
【问题描述】:
我正在尝试在 grails 4 中使用插件渲染:2.0.3,但出现编译错误:
Unable to load class grails.plugins.rendering.image.ImageRenderingService
【问题讨论】:
我正在尝试在 grails 4 中使用插件渲染:2.0.3,但出现编译错误:
Unable to load class grails.plugins.rendering.image.ImageRenderingService
【问题讨论】:
解决方案是在 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'
【讨论】: