Добавление каталогов в Grapath classpath при запуске как война? - PullRequest
2 голосов
/ 19 июля 2011

Раньше у меня было это в _Events.groovy:

eventClasspathStart = {
    addResourceBundlesToClasspath()
}

Однако, это не сработало, когда я развернул войну. Как я могу добавить каталоги к classpath, которые также должны быть включены в войну?

1 Ответ

4 голосов
/ 20 июля 2011

Вы можете настроить, какие файлы включены в войну в BuildConfig.groovy все, что находится в / WEB-INF, должно быть найдено в classpath

// This closure is passed the command line arguments used to start the
// war process.
grails.war.copyToWebApp = { args ->
fileset(dir:"web-app") {
    include(name: "js/**")
    include(name: "css/**")
    include(name: "WEB-INF/**")
}
// This closure is passed the location of the staging directory that
// is zipped up to make the WAR file, and the command line arguments.
// Here we override the standard web.xml with our own.
grails.war.resources = { stagingDir, args ->
copy(file: "grails-app/conf/custom-web.xml", tofile: "${stagingDir}/WEB-INF/web.xml")

}

С http://grails.org/doc/latest/guide/17.%20Deployment.html

Вы также можете указать зависимости в BuildConfig, используя grails.war.dependencies включить дополнительные войны в войну

def deps = [
"hibernate3.jar",
"groovy-all-*.jar",
"standard-${servletVersion}.jar",
"jstl-${servletVersion}.jar",
"oscache-*.jar",
"commons-logging-*.jar",
"sitemesh-*.jar",
"spring-*.jar",
"log4j-*.jar",
"ognl-*.jar",
"commons-*.jar",
"xstream-1.2.1.jar",
"xpp3_min-1.1.3.4.O.jar" ]

grails.war.dependencies = {
fileset(dir: "libs") {
    deps.each { pattern ->
        include(name: pattern)
    }
}

} `

...