Yes, it is technically possible. JSPs are translated to servlets anyway, so you should be able to do anything in a servlet that you can do in a JSP.
The more important consideration is why you would want to. Using a combination of Servlets and JSPs allows you to segregate responsibilities, makes your code easier to read and debug, and allows you to more easily unit test your code. On Mon, Feb 15, 2010 at 8:43 AM, kizito <[email protected]> wrote: > people i am really new and seeking for help. > I have a project in app engine application. i have started by reading > on the net but i cant get thing right. > > I see code in servlet is the same with code in jsp > > My question is that, is it possible to use Jsps with javabeans without > using servlets to develop applications? > > somebody help > > -- > You received this message because you are subscribed to the Google Groups > "Google App Engine" group. > To post to this group, send email to [email protected]. > To unsubscribe from this group, send email to > [email protected]<google-appengine%[email protected]> > . > For more options, visit this group at > http://groups.google.com/group/google-appengine?hl=en. > > -- Ikai Lan Developer Programs Engineer, Google App Engine http://googleappengine.blogspot.com | http://twitter.com/app_engine -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-appengine?hl=en.
