Friday, February 29, 2008
Subscribe to:
Post Comments (Atom)
This blog is shared between Linden and Rachel, who are cousins. The purpose of the blog is to share interesting information, links, and events. We share interests such as Apple Computers, Gaming, SciFi and Fantasy, computers in general, Programming (yay Python), websites and building them, and cool things in general.
www.flickr.com
|
1 comment:
Take a look at this code in GroovyPagesGrailsPlugin:
groovyPagesTemplateEngine(org.codehaus.groovy.grails.web.pages.GroovyPagesTemplateEngine) {
classLoader = ref("classLoader")
if (developmentMode) {
resourceLoader = groovyPageResourceLoader
}
if (grails.util.GrailsUtil.isDevelopmentEnv() || application.config.grails.gsp.enable.reload == true) {
reloadEnabled = true
}
tagLibraryLookup = gspTagLibraryLookup
jspTagLibraryResolver = jspTagLibraryResolver
}
So, you have to set the enviroment to be in 'development' mode.
Post a Comment