servlets
Purpose
Theservlets plug-in enhances with Servlet API with new methodsExamples
Attributes from the request, session, and servletContext can be accessed with the de-reference operator:class BookController {
def find = {
def findBy = params.findBy
def foo = request.foo
def loggedUser = session.logged_user
…
}
}
