rafalry
rafalry

Reputation: 2670

GWT "database" to store data server-side

I'm looking for the easiest way to store data on the server-side of the GWT app. The application is typical: consists of the client-side interface and server-side that performs all the calculations. I just need to store the data on the server. The application would be deployed to google code so the solution must obey the app engine limitations.

Thanks for any hints, Rafal

Upvotes: 3

Views: 1736

Answers (1)

Timo Westkämper
Timo Westkämper

Reputation: 22190

One option is the AppEngine DataStore. You can use it through the JDO and JPA APIs. If you want a simpler API for the AppEngine DataStore, try Objectify.

Upvotes: 4

Related Questions