當我嘗試從外部JAR使用庫時,Grails 2.0中出現NoClassDefFound異常問題。Grails 2.0依賴NoClassDefFound問題
我已經檢查過,聲明的JAR是在創建的WAR內部的,也是griles dependecies-report不標記任何問題。
本地添加的JAR或從Maven回購下載似乎沒有區別。我也嘗試清理IVY緩存並清理Grails項目,但沒有成功。
你有什麼想法如何解決它?
BuildConfig.groovy(的一部分)
grails.project.dependency.resolution = {
inherits("global") {
// uncomment to disable ehcache
// excludes 'ehcache'
}
log "error" // log level of Ivy resolver, either 'error', 'warn', 'info', 'debug' or 'verbose'
checksums true // Whether to verify checksums on resolve
repositories {
inherits true // Whether to inherit repository definitions from plugins
grailsPlugins()
grailsHome()
grailsCentral()
mavenCentral()
mavenLocal()
mavenRepo "http://snapshots.repository.codehaus.org"
mavenRepo "http://repository.codehaus.org"
mavenRepo "http://download.java.net/maven/2/"
mavenRepo "http://repository.jboss.com/maven2/"
}
dependencies {
compile ( "javax:activation:1.0",
"javax:mail:1.0",
"com.google.gdata:gdata-core:1.0",
"com.google.gdata:gdata-client:1.0",
"com.google.gdata:gdata-media:1.0",
"com.google.gdata:gdata-youtube:2.0"
)
runtime ( "javax:activation:1.0",
"javax:mail:1.0",
"com.google.gdata:gdata-core:1.0",
"com.google.gdata:gdata-client:1.0",
"com.google.gdata:gdata-media:1.0",
"com.google.gdata:gdata-youtube:2.0"
)
}
...
}
LibraryController.groovy
import com.google.gdata.client.youtube.YouTubeService
import com.google.gdata.data.youtube.VideoEntry
import com.google.gdata.util.ServiceException
class LibraryController {
private YouTubeService service
private static final API_URL = "http://gdata.youtube.com/feeds/api/videos/"
def index = {
service = new YouTubeService("app")
}
}
異常
Class
java.lang.NoClassDefFoundError
Message
Could not initialize class com.google.gdata.client.youtube.YouTubeServiceClass
java.lang.NoClassDefFoundError
消息 無法初始化類com.google.gdata.client.youtube.YouTubeService
我通常只使用「罐子-tf」檢查的jar文件在war文件內部加倍確保包含類文件YouTubeServiceClass。 – 2012-04-07 09:00:19
你什麼時候遇到這個錯誤?在運行時使用'run-app'? – Chris 2012-04-07 09:55:32
是的,我正在使用運行應用程序,並在進入庫視圖時出現異常。 – Simek 2012-04-07 11:44:19