I’m using spring and google app engine, backend operations (as I understood) requires a servlet to be defined in the web.xml file so how to do that with spring ?
I’m using spring and google app engine, backend operations (as I understood) requires a
Share
Well after lots of searching,I won’t blame GAE for not putting plain english tutorials the guys there did magnificent job. I think I should have read the docs more carefully.
let’s say you have a method(worker in GAE) that has the mapping of
http://localhost:8080/blabla/coolmethodthen if you need to excute it over a normal request just call the previous link but if you want to execute it over a backend operation you just addhttp://nameofbackend.localhost:8080/blabla/coolmethodand that’s it!. so either it’s a normal servlet or it’s spring or what ever you just add that backend name as subdomain and hit that url.