Grails在“配置类路径”时停止,即使在helloworld项目中也是如此

时间:2013-11-27 09:04:31

标签: grails classpath

我想学习Grails,所以我开始使用Hello-World Projekt。 我尝试了cmd.exe和STS中的所有内容。我有Windows7。

首先我写了grails create-app helloworld命令

然后我转入新的helloworld \目录并写了grails run-app

但是命令行没有进展到Configuring classpath

我在其他论坛上观看但没有任何帮助。 我坐在公司的互联网上。这会导致错误吗?

如果在详细设置日志级别时出错(仅限最后几行 - 之前大约有500行)

|错误无法解决依赖关系(将日志级别设置为'警告'在BuildConfig.groovy中获取更多信息):

  • org.apache.tomcat.embed:Tomcat的嵌入芯:7.0.42
  • org.apache.tomcat.embed:Tomcat的嵌入-测井的log4j:7.0.42
  • org.eclipse.jdt.core.compiler:ECJ:3.7.2
  • org.apache.tomcat:Tomcat的卡塔利娜-蚂蚁:7.0.42
  • org.apache.tomcat.embed:Tomcat的嵌入-测井巨力:7.0.42
  • org.apache.tomcat.embed:Tomcat的嵌入-碧玉:7.0.42

编辑:我使用Grails 2.2.4,继承我的BuildConfig.groovy:

grails.servlet.version = "2.5" // 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.target.level = 1.6
grails.project.source.level = 1.6
//grails.project.war.file = "target/${appName}-${appVersion}.war"

// uncomment (and adjust settings) to fork the JVM to isolate classpaths
//grails.project.fork = [
//   run: [maxMemory:1024, minMemory:64, debug:false, maxPerm:256]
//]

grails.project.dependency.resolution = {
    // inherit Grails' default dependencies
    inherits("global") {
        // specify dependency exclusions here; for example, uncomment this 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
    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()
        grailsCentral()

        mavenLocal()
        mavenCentral()

        // uncomment these (or add new ones) to enable remote dependency resolution from public Maven repositories
        //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 {
        // specify dependencies here under either 'build', 'compile', 'runtime', 'test' or 'provided' scopes e.g.

        // runtime 'mysql:mysql-connector-java:5.1.22'
    }

    plugins {
        runtime ":hibernate:$grailsVersion"
        runtime ":jquery:1.8.3"
        runtime ":resources:1.2"

        // Uncomment these (or add new ones) to enable additional resources capabilities
        //runtime ":zipped-resources:1.0"
        //runtime ":cached-resources:1.0"
        //runtime ":yui-minify-resources:0.1.5"

        build ":tomcat:$grailsVersion"

        runtime ":database-migration:1.3.2"

        compile ':cache:1.0.1'
    }
}

3 个答案:

答案 0 :(得分:4)

确保您不在代理之后。 检查命令行grails list-plugins。

如果此调用失败:添加并设置代理并检查ProxySettings.groovy中的正确条目。

愿这有帮助。

答案 1 :(得分:0)

请检查互联网和插件下载链接是否可访问..

答案 2 :(得分:0)

  

我坐在公司的互联网上

我遇到了与公司代理服务器相同的问题。

在grails-version_number \ bin \的Windows机器上有一个startGrails.bat。这里可以通过JAVA_OPTS(朝向文件底部)设置代理服务器的设置。但是这样做会很好,因为当你从现在起升级Grails大约一年后,你的海关设置就会丢失。而且你会对Grails为何不再起作用和/或你不记得设置代理服务器信息的语法感到不安。

因此,在同一个bin \目录中创建一个名为setenv.bat的新文件。在那里添加

@rem  Java proxy properties for connecting to proxy server 
set JAVA_OPTS=%JAVA_OPTS% -Dhttp.proxySet=true -Dhttp.proxyHost="proxyServerName" -Dhttp.proxyPort="0123" -Dhttp.username="userName" -Dhttp.password="userPassWord"

我会删除您刚创建的helloworld目录,然后再次运行

grails create-app helloworld