views:

467

answers:

3

Any body hosted JSP in GoogleAppEngine... I Expect the user experiences from GoogleAppEngine

Is it easy to maintain JSP/Servlet . I have used another free webhosting service.But it wasnt nice to manage and use.

A: 

I've implemented an application based on a simple servlet serving JSON and storing/loading data directly using DataStore API (no JDO, JPA)

dfa
I'm feeling fine, thank you :)
+3  A: 

JSPs are a standard part of the Java GAE. So what exactly is you question?

What do you mean by your second sentence?

+1  A: 

JSP and Servlet is still JSP and Servlet on Google App Engine. I have used it to call the Twitter API from the servlet and store it in their Memcache. It was just like writing any other application. However, when you deploy it, either it just works or you have no clue whats gone wrong. Bottomline - its very easy as long as it just works.

Langali