2014-12-03 44 views
0

我知道类似的问题已经被问到,但我已经非常彻底地浏览它们。Grails挂在'配置类路径'

我下载了ggts包并使用Eclipse创建了一个名为GrailsExample的项目。当我尝试运行groovy应用程序时,它挂在'刷新依赖(33%)'上。最后一个日志输出是'配置类路径'。当我从DOS提示符运行任何grails命令时也会发生同样的情况。

我在防火墙后面。当我尝试使用'grails add-proxy'命令时,它会在同一步骤中挂起。

我将日志级别改为冗长,没有任何变化。

我从我的BuildConfig.groovy文件中注释了一些存储库,同样的问题。

我试着运行grails clean --offline,这也挂在同一点上。

我试图注释掉一对夫妇的存储库(见下文)

当我运行“Grails的清洁-offline --stacktrace”我得到以下错误:

| Error Resolve error obtaining dependencies: Failed to read artifact descriptor for xalan:serializer:jar:2.7.1 
| Error Required Grails build dependencies were not found. This is normally due to internet connectivity issues (such as a misconfigured proxy) or missing repositories in grails-app/conf/BuildConfig.groovy. Please verify your configuration to continue. 

我不知道现在该做什么。我被卡住了,就像grails一样。下面

grails.servlet.version = "3.0" // Change depending on target container compliance (2.5 or 3.0) 
grails.project.class.dir = "target/classes" 
grails.project.test.class.dir = "target/test-classes" 
grails.project.test.reports.dir = "target/test-reports" 
grails.project.work.dir = "target/work" 
grails.project.target.level = 1.6 
grails.project.source.level = 1.6 
//grails.project.war.file = "target/${appName}-${appVersion}.war" 

grails.project.fork = [ 
    // configure settings for compilation JVM, note that if you alter the Groovy version forked compilation is required 
    // compile: [maxMemory: 256, minMemory: 64, debug: false, maxPerm: 256, daemon:true], 

    // configure settings for the test-app JVM, uses the daemon by default 
    test: [maxMemory: 768, minMemory: 64, debug: false, maxPerm: 256, daemon:true], 
    // configure settings for the run-app JVM 
    run: [maxMemory: 768, minMemory: 64, debug: false, maxPerm: 256, forkReserve:false], 
    // configure settings for the run-war JVM 
    war: [maxMemory: 768, minMemory: 64, debug: false, maxPerm: 256, forkReserve:false], 
    // configure settings for the Console UI JVM 
    console: [maxMemory: 768, minMemory: 64, debug: false, maxPerm: 256] 
] 

grails.project.dependency.resolver = "maven" // or ivy 
grails.project.dependency.resolution = { 
    // inherit Grails' default dependencies 
    inherits("global") { 
     // specify dependency exclusions here; for example, uncomment this to disable ehcache: 
     // excludes 'ehcache' 
    } 
    log "verbose" // log level of Ivy resolver, either 'error', 'warn', 'info', 'debug' or 'verbose' 
    checksums true // Whether to verify checksums on resolve 
    legacyResolve false // whether to do a secondary resolve on plugin installation, not advised and here for backwards compatibility 

    repositories { 
     inherits true // Whether to inherit repository definitions from plugins 

     grailsPlugins() 
     //grailsHome() 
     mavenLocal() 
     //grailsCentral() 
     mavenCentral() 
     // uncomment these (or add new ones) to enable remote dependency resolution from public Maven repositories 
     mavenRepo "http://repository.codehaus.org" 
     mavenRepo "http://download.java.net/maven/2/" 
     mavenRepo "http://repository.jboss.com/maven2/" 
    } 

    dependencies { 
     // specify dependencies here under either 'build', 'compile', 'runtime', 'test' or 'provided' scopes e.g. 
     // runtime 'mysql:mysql-connector-java:5.1.29' 
     // runtime 'org.postgresql:postgresql:9.3-1101-jdbc41' 
     test "org.grails:grails-datastore-test-support:1.0.2-grails-2.4" 
    } 

    plugins { 
     // plugins for the build system only 
     build ":tomcat:7.0.55" 

     // plugins for the compile step 
     compile ":scaffolding:2.1.2" 
     compile ':cache:1.1.8' 
     compile ":asset-pipeline:1.9.9" 

     // plugins needed at runtime but not for compilation 
     runtime ":hibernate4:4.3.6.1" // or ":hibernate:3.6.10.18" 
     runtime ":database-migration:1.4.0" 
     runtime ":jquery:1.11.1" 

     // Uncomment these to enable additional asset-pipeline capabilities 
     //compile ":sass-asset-pipeline:1.9.0" 
     //compile ":less-asset-pipeline:1.10.0" 
     //compile ":coffee-asset-pipeline:1.8.0" 
     //compile ":handlebars-asset-pipeline:1.3.0.3" 
    } 
} 
+0

你是否输入完整的命令为'grails add-proxy client --host = proxy-server --port = nnnn' ?假设你的代理有正确的值。检查官方的Grails参考http://grails.org/doc/2.0.0/ref/Command%20Line/set-proxy.html – 2014-12-03 19:51:55

+0

是的。我从命令行尝试了几种不同的方式,每次打印“配置类路径”后都会挂起。 – 2014-12-04 15:16:18

+0

ARGHHH,想通了!如果我在包含grails项目的文件夹中运行该命令,它会挂起并炸毁。我需要在通用文件夹中运行“添加代理”。 – 2014-12-04 15:22:40

回答

1

我BuildConfig.groovy来自萨尔瓦多的提示后想通了这一点。我最初运行的是创建应用程序并进入该文件夹。正是在那时我试图运行'add-proxy'命令。它保持悬挂,并最终与上面提到的'xalan:serializer:jar:2.7.1'错误一起爆炸。

您需要在项目文件夹之外运行此命令。它看起来'配置类路径'后采取的行动取决于你所在的文件夹上下文。