grails 2.2.0是否有Excel导入插件?我尝试使用http://grails.org/plugin/excel-import,但它显示以下错误:
... \ SERVICES \组织\的Grails \插件\ excelimport \ ExcelImportService.groovy: 4:无法解析班级组织。 joda.time.LocalDate @ line 4,专栏 1. import org.joda.time.LocalDate ^ 1 error
这是BuildConfig.groovy的一部分
repositories {
...
mavenRepo "http://repo.grails.org/grails/libs-releases/"
mavenRepo "http://m2repo.spockframework.org/ext/"
}
plugins {
compile ":excel-import:1.0.0"
...
}
感谢任何帮助。
答案 0 :(得分:1)
确保添加了额外的依赖关系存储库:
mavenRepo "http://repo.grails.org/grails/libs-releases/"
mavenRepo "http://m2repo.spockframework.org/ext/"
到BuildConfig中的maven repo部分。好像它找不到它需要的依赖(在这种情况下是JodaTime) 希望它有所帮助。
答案 1 :(得分:1)
以防有人需要它。 当我在grails 2.4.4上遇到同样的麻烦时我会使用 在我的buildconfig中:compile":excel-import:2.0.0.BUILD-SNAPSHOT"
答案 2 :(得分:0)
我已将plugins.joda-time=1.3.1
添加到application.properties并且它现在正在运行,我在此处找到了解决方案http://jonpolaski.blogspot.com/2013/04/grails-2x-excel-import-via-file-upload.html
答案 3 :(得分:0)
您可以将以下内容添加到依赖项中以获取jodatime:
compile "org.jadira.usertype:usertype.jodatime:1.9"
但是仍然存在excel-import问题:1.0.0
该导入使用已弃用的类,不会使用grails 2.4
进行编译有一个名为excel-import:1.0.1的版本可以在Git上找到。有谁知道如何安装?