Grails return CSV

Grails return CSV

我正在使用 Grails 2.4.0,我想 return CSV 文件到浏览器。

导出插件不工作 - 我明白了 解决获取依赖项报错:Could not transfer artifact org.grails.plugins:export:jar:1.6

我怎样才能做到这一点?

尝试将其添加到您的 插件中 -

 compile(":export:1.6") {
        exclude "bcprov-jdk14"
 }

*对我来说正在工作 (grails 2.3.11)