I am trying to configure gretty in a way which will allow me to reload static resources like *.html files (which lives inside standard src/webapp/WEB-INF) without server redeploy. However all my attempts were unsuccessful.
I test it by changing html file and reload html page with clear cache inside chrome(ctr+shift+R).
With Configuration 1:
gretty {
contextPath = 'john'
servletContainer = 'jetty9'
fastReload = true
}
Changing of any html page has no effect at all.
With Configuration 2:
gretty {
contextPath = 'john'
servletContainer = 'jetty9'
fastReload = false
}
Changing of any html calls whole server redeploying which I do not want to happen.
Any chance to make this working?