I also experiencing the same problem. It works on mu localhost:8080 env, but does not in the cloud. I get
.gaelyk.groovlet.index: GroovyServlet Error: script: '/index.groovy': Script not found, sending 404.
in my GAE console.
here's my routes.groovy
get "/", forward: "/index.groovy"
get "/index", forward: "/index.groovy"
get "/index.html", forward: "/index.groovy"
get "/favicon.ico", redirect: "/images/logo_32.png"
I can tell you that this worked several weeks ago, I made some changes [I'd assume] and this odd behaviour started
here's my index.groovy
import com.website.BackgroundImageLinkService
request.setAttribute 'contentHtml', 'index.html'
request.setAttribute 'bgImageUrl', new BackgroundImageLinkService(datastore).imgSrc()
forward '/WEB-INF/templates/carcass.html'
please help me
thank you
cheers
Denis
PS. Note:Don't forget to declare packages for Groovlets when you use Gradle Gaelyk Plugin to build the application. Otherwise they will be placed in wrong destination folders!
says me nothing, unfortunately! I use gmaven and maven-gae-plugin to build and deploy the app.