How do I drop a Groovlet into a Grails app? Say, for example, in web-app/groovlet.groovy
import java.util.Date if (session == null) { session = request.getSession(true); } if (session.counter == null) { session.counter = 1 } println ''' <html> <head> <title>Groovy Servlet</title> </head> <body> Hello, ${request.remoteHost}: Counter: ${session.counter}! Date: ${new Date()} <br> '''
grails install-templatessrc/templates/web/web.xmlto include your groovletgrails warI’ve not personally done this to incorporate a groovlet, but this is the documented way to modify the deployed Grails
web.xml