• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Is it possible using Spring in Google App Engine?

 
Ranch Hand
Posts: 701
2
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,

I'd like to know if it is possible using Spring in Google App Engine.

Thank you
 
author
Posts: 422
13
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Rogerio Kioshi wrote:I'd like to know if it is possible using Spring in Google App Engine.



Yes

As with any application you have to be aware of GAE's quirky whitelist, but I've deployed a basic Spring MVC application on GAE with minimal problems. The biggest issue I had (and this is certainly an edge case kinda thing) is that I was putting objects into the session that were actually dynamic proxies to Spring beans. Apparently GAE will let you do that, but upon trying to reinstate the session it fails with a ClassNotFoundException for the interface that the proxy implements. Otherwise, no problems that I'm aware of. (Admittedly, my GAE experience is slim, though.)
 
reply
    Bookmark Topic Watch Topic
  • New Topic