Small snippets of tasty Grails.
Setting:
import javax.servlet.http.Cookiedef c = new Cookie(someName, someValue)c.maxAge = someNumberInSecondsresponse.addCookie(c)
Getting:
request.cookies.each { println "${it.name} == ${it.value} }
Ei kommentteja:
Lähetä kommentti