views:

264

answers:

2

Can i use Spring Webflow/MVC and Spring Security and Hibernate on Google App Engine?

Is there a list/summary of java frameworks that can be used on the GAE?

+2  A: 

See at this link a list of frameworks that run on the JVM to see if the one you want is supported or not

ccheneson
To expand on this answer, the frameworks listed will work, but based on http://www.answercow.com/2010/03/google-app-engine-cold-start-guide-for.html may have a pretty huge impact on the amount of time it can take to spin up a new instance if there isn't one already going. If you don't need them, you should try to live without them. Try http://code.google.com/p/objectify-appengine/
Jason Hall
A: 

As far as I know, no third party libraries are supported (at least none are listed), and JRE classes are limited to this list. But I guess if a library only makes use of the listed jre classes, they should be fine. However, finding out if they do would have to be based on trying it out.

klausbyskov