Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can you use Java EE frameworks with the Google App Engine?

I have been working on a small web app using the Stripes framework. Now that the Google App Engine has added support for Java, I am wondering if I can convert it to run in the Google App Engine to save costs on hosting.

like image 940
Mr. Will Avatar asked Apr 08 '09 19:04

Mr. Will


1 Answers

Yes, it supports servlets, so it should support Stripes just fine.

According to the App Engine documentation,

App Engine uses the Java Servlet standard for web applications. You provide your app's servlet classes, JavaServer Pages (JSPs), static files and data files, along with the deployment descriptor (the web.xml file) and other configuration files, in a standard WAR directory structure. App Engine serves requests by invoking servlets according to the deployment descriptor.

like image 97
cgp Avatar answered Sep 18 '22 10:09

cgp