【问题标题】:Grails Hanging on 'Configuring classpath'Grails 挂在“配置类路径”上
【发布时间】:2015-02-01 12:03:19
【问题描述】:

我知道有人问过类似的问题,但我已经非常彻底地研究过了。

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

我在防火墙后面。当我尝试使用“grails add-proxy”命令时,它挂在同一步骤上。

我将日志记录级别更改为详细,但没有任何变化。

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

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

我尝试注释掉几个存储库(见下文)

当我运行“grails clean -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.

我现在不知道该怎么办。我像圣杯一样被卡住了。

下面是我的 BuildConfig.groovy

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"
    }
}

【问题讨论】:

  • 您输入的完整命令是否为grails add-proxy client --host=proxy-server --port=nnnn?假设您的代理具有正确的值。检查官方grails参考grails.org/doc/2.0.0/ref/Command%20Line/set-proxy.html
  • 是的。我从命令行尝试了几种不同的方法,每次打印“配置类路径”后它都会挂起。
  • ARGHHH,想通了!!如果我在包含 grails 项目的文件夹中运行该命令,它会挂起并爆炸。我需要在通用文件夹中运行“添加代理”。

标签: eclipse maven grails


【解决方案1】:

在萨尔瓦多的提示下想通了。我最初运行 create-app 并进入该文件夹。就在那时,我试图运行“add-proxy”命令。它一直挂起并最终因上面提到的“xalan:serializer:jar:2.7.1”错误而崩溃。

您需要在项目文件夹之外运行此命令。在“配置类路径”之后执行的操作似乎取决于您所在的文件夹上下文。

【讨论】:

    猜你喜欢
    • 2016-01-18
    • 1970-01-01
    • 1970-01-01
    • 2016-02-06
    • 1970-01-01
    • 2013-12-12
    • 1970-01-01
    • 2021-09-17
    • 2021-11-22
    相关资源
    最近更新 更多