How does Grails merge the config.groovy with the static web.xml file? -
grails allows generate static web.xml file with:
grails install-templates
when edit generated web.xml file , add change config.groovy grails @ compile time do? how these files merged final web.xml file, since can specify web.xml related configurations in config.groovy?
grails have package phase work needed create final web.xml
file. if i'm not mistaken done grailsprojectpackager#generatewebxml(grailspluginmanager pluginmanager)
.
this process @ installed plugins, can have customizations applied in file, though dowithwebdescriptor
closure. can check on github.
Comments
Post a Comment