そのようなブートストラップを持っている:
class BootStrap {
def init = { servletContext ->
def file = servletContext.getResource("ehcache.xml")
println "+++ ${file}"
}
def destroy = {
}
}
アプリケーションにehcache.xml
はgrails-app/confディレクトリにファイルが含まれていますが、出力されます
+++ null
ブートストラップ中。問題は何ですか?