(Quick Reference)

servletContext

目的
Purpose

The servletContext object is an instance of the Servlet API's ServletContext class.

使用例
Examples

class BookController {
    def doSomething() {
        def input
        try {
            input = servletContext.getResourceAsStream("/WEB-INF/myscript.groovy")
            def result = new GroovyShell().evaluate(input.text)
            render result
        }
        finally {
            input.close()
        }
    }
}

詳細
Description

The Servlet API's ServletContext is useful for, amongst other things, storing global application attributes, reading local server resources and establishing information about the servlet container.

Grails adds additional methods to the standard Servlet API's servletContext object. See link for details.