gpt4 book ai didi

eclipse - Grails卡在 'Configuring classpath'上

转载 作者:行者123 更新时间:2023-12-02 15:26:10 25 4
gpt4 key购买 nike

我知道有人问过类似的问题,但我已经仔细研究了它们。

我下载了ggts bundle 软件,并使用Eclipse创建了一个名为GrailsExample的项目。当我尝试运行groovy应用程序时,它卡在“刷新依赖关系(33%)”上。最后的日志输出是“配置类路径”。当我从DOS提示符下运行ANY 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.

我现在不知道该怎么办。我像grails一样被困住。

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

最佳答案

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

您需要在项目文件夹之外运行此命令。出现“配置类路径”后所采取的操作因您所处的文件夹上下文而异。

关于eclipse - Grails卡在 'Configuring classpath'上,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27279959/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com