Как получить контекстный путь в файле BootStrap.groovy приложения Grails?
Разве вы не можете сделать:
class BootStrap { def init = { servletContext -> println "$servletContext.contextPath" } def destroy = { } }