Fabio B.
Fabio B.

Reputation: 9400

GWT/GAE Spring IoC powered

I'm trying to put together Google App Engine and Google Web Toolkit for one of my projects.

I think I'm going to use Objectify for data persistence, too.

The guys of Springsource says that integrate those technology with Spring is possible.

Do you know where can I find some sort of tutorial about that?

Upvotes: 1

Views: 637

Answers (2)

egonzal
egonzal

Reputation: 827

Spring + GAE == slow start up for every instance. You will face performance problems. In my project I had to get get rid of Spring once we had everything implemented :( I wont use Spring + gae anymore

Upvotes: 1

Igor Artamonov
Igor Artamonov

Reputation: 35951

There is no any extra stuff required, no special configurations, tricks, etc. If you know both Spring and GAE - just use it, it's pretty standard.

I've few project based on Spring+GAE+Objectify+Java/Groovy - everything working fine together.

update:

Spring is good only for server-side part. As you want to use IoC on client side (in GWT part), you can use Google GIN instead. It's Google Guice framework (IoC from Google) designed for using with GWT.

See http://code.google.com/p/google-gin/

Upvotes: 0

Related Questions