[appengine-java] Appengine Rest Services

2011-08-12 Thread Bruno Sandivilli
Hi, i'm doing some ressearch, because i want to do some rest services.
I can do this by uusing Spring MVC + Jackson
But i'm thinking in use some kind of stuff that integrates better with
appengine.
Im thinking in use : Guice + Jersey .
But, i could not find some good examples on the web. I found this  :

http://blog.iparissa.com/jersey-guice-on-google-app-engine-java/

but i cant find the jersey-guice(wich contains GuiceContainer).

Is this the best way to build a rest service in Java + Appengine?

May i use Spring or Guice to acomplish this?

Thanks!

-- 
You received this message because you are subscribed to the Google Groups 
Google App Engine for Java group.
To post to this group, send email to google-appengine-java@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine-java+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine-java?hl=en.



Re: [appengine-java] Appengine Rest Services

2011-08-12 Thread Bruno Fuster
I'm using VRaptor with Guice, which is much faster than Spring, for RESTful
resources. Vraptor is a very productive MVC/RESTful web framework and
there's a blank GAE project for a quick start.

Pico is very fast too. You can also use a static component scanner for even
faster startup (around 3 secs for me).

http://vraptor.caelum.com.br/documentation/resources-rest/



On Wed, Aug 10, 2011 at 5:37 PM, Bruno Sandivilli 
bruno.sandivi...@gmail.com wrote:

 Hi, i'm doing some ressearch, because i want to do some rest services.
 I can do this by uusing Spring MVC + Jackson
 But i'm thinking in use some kind of stuff that integrates better with
 appengine.
 Im thinking in use : Guice + Jersey .
 But, i could not find some good examples on the web. I found this  :

 http://blog.iparissa.com/jersey-guice-on-google-app-engine-java/

 but i cant find the jersey-guice(wich contains GuiceContainer).

 Is this the best way to build a rest service in Java + Appengine?

 May i use Spring or Guice to acomplish this?

 Thanks!

 --
 You received this message because you are subscribed to the Google Groups
 Google App Engine for Java group.
 To post to this group, send email to
 google-appengine-java@googlegroups.com.
 To unsubscribe from this group, send email to
 google-appengine-java+unsubscr...@googlegroups.com.
 For more options, visit this group at
 http://groups.google.com/group/google-appengine-java?hl=en.




-- 
Bruno Fuster

-- 
You received this message because you are subscribed to the Google Groups 
Google App Engine for Java group.
To post to this group, send email to google-appengine-java@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine-java+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine-java?hl=en.



Re: [appengine-java] Appengine Rest Services

2011-08-12 Thread Jeff Schnitzer
I'm pretty happy with Resteasy:

http://www.jboss.org/resteasy

There was a minor trick to getting Guice integrated nicely (see my
recent post on the resteasy-developers list).  Other than that it
works great, and you can use it to render HTML pages with a little
extension:  http://code.google.com/p/htmleasy/

It all works normally on appengine, no issues.

Jeff

On Wed, Aug 10, 2011 at 1:37 PM, Bruno Sandivilli
bruno.sandivi...@gmail.com wrote:
 Hi, i'm doing some ressearch, because i want to do some rest services.
 I can do this by uusing Spring MVC + Jackson
 But i'm thinking in use some kind of stuff that integrates better with
 appengine.
 Im thinking in use : Guice + Jersey .
 But, i could not find some good examples on the web. I found this  :

 http://blog.iparissa.com/jersey-guice-on-google-app-engine-java/

 but i cant find the jersey-guice(wich contains GuiceContainer).

 Is this the best way to build a rest service in Java + Appengine?

 May i use Spring or Guice to acomplish this?

 Thanks!

 --
 You received this message because you are subscribed to the Google Groups 
 Google App Engine for Java group.
 To post to this group, send email to google-appengine-java@googlegroups.com.
 To unsubscribe from this group, send email to 
 google-appengine-java+unsubscr...@googlegroups.com.
 For more options, visit this group at 
 http://groups.google.com/group/google-appengine-java?hl=en.



-- 
You received this message because you are subscribed to the Google Groups 
Google App Engine for Java group.
To post to this group, send email to google-appengine-java@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine-java+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine-java?hl=en.



Re: [appengine-java] Appengine Rest Services

2011-08-12 Thread Inderjeet Singh
You can also look at Greaze: http://code.google.com/p/greaze/

I authored this framework and have used it to write JSON-based REST services
on GAE and access them from Android clients.

Inder

---
Checkout my Android app PowerVocab:
https://market.android.com/details?id=com.applimobile.powervocab

On Fri, Aug 12, 2011 at 12:42 PM, Jeff Schnitzer j...@infohazard.orgwrote:

 I'm pretty happy with Resteasy:

 http://www.jboss.org/resteasy

 There was a minor trick to getting Guice integrated nicely (see my
 recent post on the resteasy-developers list).  Other than that it
 works great, and you can use it to render HTML pages with a little
 extension:  http://code.google.com/p/htmleasy/

 It all works normally on appengine, no issues.

 Jeff

 On Wed, Aug 10, 2011 at 1:37 PM, Bruno Sandivilli
 bruno.sandivi...@gmail.com wrote:
  Hi, i'm doing some ressearch, because i want to do some rest services.
  I can do this by uusing Spring MVC + Jackson
  But i'm thinking in use some kind of stuff that integrates better with
  appengine.
  Im thinking in use : Guice + Jersey .
  But, i could not find some good examples on the web. I found this  :
 
  http://blog.iparissa.com/jersey-guice-on-google-app-engine-java/
 
  but i cant find the jersey-guice(wich contains GuiceContainer).
 
  Is this the best way to build a rest service in Java + Appengine?
 
  May i use Spring or Guice to acomplish this?
 
  Thanks!
 
  --
  You received this message because you are subscribed to the Google Groups
 Google App Engine for Java group.
  To post to this group, send email to
 google-appengine-java@googlegroups.com.
  To unsubscribe from this group, send email to
 google-appengine-java+unsubscr...@googlegroups.com.
  For more options, visit this group at
 http://groups.google.com/group/google-appengine-java?hl=en.
 
 

 --
 You received this message because you are subscribed to the Google Groups
 Google App Engine for Java group.
 To post to this group, send email to
 google-appengine-java@googlegroups.com.
 To unsubscribe from this group, send email to
 google-appengine-java+unsubscr...@googlegroups.com.
 For more options, visit this group at
 http://groups.google.com/group/google-appengine-java?hl=en.



-- 
You received this message because you are subscribed to the Google Groups 
Google App Engine for Java group.
To post to this group, send email to google-appengine-java@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine-java+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine-java?hl=en.