2013-09-24 2 views
1

내 BuildConfig.groovy 파일오류 : 입력 문자열 : "true"로

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 "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() 
     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.24' 
    } 

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

     // plugins for the compile step 
     compile ":scaffolding:2.0.0" 
     compile ':cache:1.1.1' 

     // plugins needed at runtime but not for compilation 
     runtime ":hibernate:3.6.10.1" // or ":hibernate4:4.1.11.1" 
     runtime ":database-migration:1.3.5" 
     runtime ":jquery:1.10.2" 
     runtime ":resources:1.2" 
     // Uncomment these (or add new ones) to enable additional resources capabilities 
     //runtime ":zipped-resources:1.0.1" 
     //runtime ":cached-resources:1.1" 
     //runtime ":yui-minify-resources:0.1.5" 
    } 
} 

나는 윈도우 XP를 사용하고 그리고 난 인증 프록시 연결에서입니다. 연결 때문에 문제가 있습니까?

답변

5

1 테스트는 기본 buildconfig를 갖는 새로운 프로젝트를 만드는 것입니다. - 프록시 설정 을에 프록시를 설정하는 두 명령이 있습니다

http://lalitagarw.blogspot.co.uk/2011/06/grails-configuration-proxy-settings.html

Grails의 구성 :

편집 추가 한 다음 새로 고침 종속성을 시도하고 심지어 당신이 같은 문제를 얻을 수 있는지 확인하기 위해 새 플러그인을 추가 그레이스. 예를 들어

Add Proxy - adds a proxy server setting in proxysettings.groovy file 
Set Proxy - sets the current proxy in the proxysettings.groovy file. 

Grails에 추가 프록시 클라이언트 --host = 프록시 서버 --port = 4300 --username = 손님 --password = 손님 Grails의 설정 프록시 클라이언트

:

grails add-proxy myproxy --host=internet --port=8085 
grails set-proxy myproxy 

Windows 콘솔을 사용하는 경우 매개 변수를 큰 따옴표로 묶어야합니다.

grails add-proxy myproxy "--host=internet" "--port=8085" 
grails set-proxy myproxy 

설정은 proxysettings.groovy 파일에서 확인할 수 있습니다. 이 파일은 .grails 폴더에 있습니다.

위의 링크에서 가져온 것입니다. 게시물에 추가하는 이유입니다. 몇 가지 문제를 해결했으며 그물이 어떻게되는지를 알았 기 때문입니다. 그러므로 희망의 응답의 일부로 여기에 포함시키는 것이 가장 좋습니다.

+0

예, 새 프로젝트를 만들어 테스트했지만 동일한 오류가 표시됩니다. 그것의 신선한 설치 및 오류 grails 실행 - 응용 프로그램을 실행할 때 보여줍니다. – blackhawk

+0

그래,하지만 run-app는 의존성을 다운로드하고 실행하기 전에 코드를 컴파일 할 것이다. grails.project.fork에 대한 전체 설정을 주석 처리 해 보셨습니까? 왜냐하면 나는 이것을 광산에서 사용하지 못했고 위의 코드를 사용하려고 시도했을 때 run-app – Vahid

+0

을 실행했을 때 여전히 오류가 발생하지 않았기 때문이다. 주석 처리 후에도. 저장소 나 다른 것에 액세스 할 수 없기 때문에 문제가 발생 했습니까? 왜냐하면 나는 내부 프록시에 내가 grails에서 프록시를 설정해야합니까? – blackhawk